test #6 #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
# rerun test to get logs again - fv - Tue Jan 21 07:45:55 PM EST 2025 | |
on: push | |
env: | |
SDRPLAY_SOFTWARE_DOWNLOADS: 'https://www.sdrplay.com/software' | |
jobs: | |
macos-test: | |
name: MacOS test | |
runs-on: macos-latest | |
steps: | |
- name: Check MacOS version | |
run: sw_vers | |
- name: Install SoapySDR | |
run: brew install soapysdr | |
- name: Install SDRplay API 3.X | |
env: | |
SDRPLAY_API_FILE_MACOS: SDRplayAPI-macos-installer-universal-3.15.0.pkg | |
run: | | |
curl -s -S -O "$SDRPLAY_SOFTWARE_DOWNLOADS/$SDRPLAY_API_FILE_MACOS" | |
sudo installer -pkg "$SDRPLAY_API_FILE_MACOS" -target / | |
- name: Check SDRplay API install | |
run: | | |
ls -l /usr/local/lib | |
echo '--------------------------------------' | |
otool -L /usr/local/lib/libsdrplay_api.so | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Build | |
run: | | |
mkdir build | |
cd build | |
cmake .. | |
make | |
- name: Check things before install | |
run: | | |
otool -L build/libsdrPlaySupport.so | |
echo '--------------------------------------' | |
otool -l build/libsdrPlaySupport.so | grep -B1 -A4 LC_RPATH | |
- name: Install | |
run: | | |
cd build | |
sudo make install |