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
|
name: Build check
on:
push:
pull_request:
workflow_dispatch:
jobs:
macos_macports_build_job:
strategy:
fail-fast: false
matrix:
os: [macos-14, macos-15]
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 py310-setuptools uhd
# Note: MacPorts uhd depends on non-default boost171
- name: Configure
run: BOOST_ROOT=/opt/local/libexec/boost/1.71 cmake -B build
- name: Build
run: cmake --build build
macos_homebrew_build_job:
strategy:
fail-fast: false
matrix:
os: [macos-14, macos-15]
runs-on: ${{ matrix.os }}
name: Build on ${{ matrix.os }} (homebrew)
steps:
- uses: actions/checkout@v4
- name: Setup tools
run: brew install soapysdr uhd
- name: Configure
run: cmake -B build
- name: Build
run: cmake --build build
linux_build_job:
strategy:
fail-fast: false
matrix:
os: [ubuntu-22.04, ubuntu-24.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 libuhd-dev
- name: Configure
run: cmake -GNinja -B build
- name: Build
run: cmake --build build
|