Skip to content

Commit

Permalink
Github actions: Add macos CI
Browse files Browse the repository at this point in the history
  • Loading branch information
cozycactus committed Aug 24, 2024
1 parent 5a5e27b commit da9eb1d
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -165,3 +165,26 @@ jobs:
with:
name: soapy-package
path: SDDC_SOAPY.ZIP

build-on-macos:
runs-on: macos-latest
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Install dependencies
run: |
brew update
brew install soapysdr
brew install fftw
- name: Build SoapySDR Module
run: |
mkdir -p build
cd build
cmake -DCMAKE_INSTALL_PREFIX=$(brew --prefix) ..
sudo make install
- name: Check SoapySDR Installation
run: |
SoapySDRUtil --info

0 comments on commit da9eb1d

Please sign in to comment.