1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
|
From d5119cc3c9ddc10b5215710ff39bbae0ddf38c08 Mon Sep 17 00:00:00 2001
From: "Christian W. Zuckschwerdt" <christian@zuckschwerdt.org>
Date: Thu, 18 Apr 2024 00:26:14 +0200
Subject: [PATCH 08/12] Add Github Action to build check
---
.github/workflows/build.yml | 58 +++++++++++++++++++++++++++++++++++++
1 file changed, 58 insertions(+)
create mode 100644 .github/workflows/build.yml
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
new file mode 100644
index 0000000..6f85ec4
--- /dev/null
+++ b/.github/workflows/build.yml
@@ -0,0 +1,58 @@
+name: Build check
+on:
+ push:
+ pull_request:
+ workflow_dispatch:
+
+jobs:
+ macos_macports_build_job:
+ strategy:
+ fail-fast: false
+ matrix:
+ os: [macos-12, macos-14]
+ runs-on: ${{ matrix.os }}
+ name: Build on ${{ matrix.os }} (macports)
+ steps:
+ - uses: actions/checkout@v4
+ - uses: melusina-org/setup-macports@v1
+ - name: Install ports
+ run: port install SoapySDR rtl-sdr
+ - name: Configure
+ run: cmake -B build
+ - name: Build
+ run: cmake --build build
+
+ macos_homebrew_build_job:
+ strategy:
+ fail-fast: false
+ matrix:
+ os: [macos-12, macos-14]
+ runs-on: ${{ matrix.os }}
+ name: Build on ${{ matrix.os }} (homebrew)
+ steps:
+ - uses: actions/checkout@v4
+ - name: Setup tools
+ run: brew install soapysdr librtlsdr
+ - name: Configure
+ run: cmake -B build
+ - name: Build
+ run: cmake --build build
+
+ linux_build_job:
+ strategy:
+ fail-fast: false
+ matrix:
+ os: [ubuntu-20.04, ubuntu-22.04]
+ runs-on: ${{ matrix.os }}
+ name: Build on ${{ matrix.os }}
+ steps:
+ - uses: actions/checkout@v4
+ - name: Setup tools
+ run: |
+ sudo apt-get update -q -y
+ sudo apt-get install -y --no-install-recommends cmake ninja-build
+ sudo apt-get install -q -y libsoapysdr-dev librtlsdr-dev
+ - name: Configure
+ run: cmake -GNinja -B build
+ - name: Build
+ run: cmake --build build
--
2.47.3
|