Skip to content

Add Github Action to build check #2

Add Github Action to build check

Add Github Action to build check #2

Workflow file for this run

name: Build check
on:
push:
pull_request:
workflow_dispatch:
jobs:
macos_build_job:
strategy:
fail-fast: false
matrix:
os: [macos-12, macos-14]
runs-on: ${{ matrix.os }}
name: Build on ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Setup tools
run: brew install soapysdr airspy
- name: Build
run: |
cmake -B build
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 libairspy-dev
- name: Build
run: |
cmake -GNinja -B build
cmake --build build