Skip to content

Commit

Permalink
Update Github Action
Browse files Browse the repository at this point in the history
  • Loading branch information
zuckschwerdt committed Oct 17, 2024
1 parent 94889f7 commit 70c7605
Showing 1 changed file with 27 additions and 3 deletions.
30 changes: 27 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [macos-12, macos-14]
os: [macos-13, macos-14, macos-15]
runs-on: ${{ matrix.os }}
name: Build on ${{ matrix.os }} (macports)
steps:
Expand All @@ -27,7 +27,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [macos-12, macos-14]
os: [macos-13, macos-14, macos-15]
runs-on: ${{ matrix.os }}
name: Build on ${{ matrix.os }} (tfcollins)
steps:
Expand All @@ -36,6 +36,18 @@ jobs:
run: |
brew tap tfcollins/homebrew-formulae
brew update
echo removing links overwritten by brew install soapysdr
rm -f /usr/local/bin/idle3
rm -f /usr/local/bin/pydoc3
rm -f /usr/local/bin/python3
rm -f /usr/local/bin/python3-config
rm -f /usr/local/share/man/man1/python3.1
rm -f /usr/local/lib/pkgconfig/python3-embed.pc
rm -f /usr/local/lib/pkgconfig/python3.pc
rm -f /usr/local/Frameworks/Python.framework/Headers
rm -f /usr/local/Frameworks/Python.framework/Python
rm -f /usr/local/Frameworks/Python.framework/Resources
rm -f /usr/local/Frameworks/Python.framework/Versions/Current
brew install soapysdr libusb libiio libad9361-iio
- name: Configure
run: cmake -B build
Expand All @@ -46,7 +58,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [macos-12, macos-14]
os: [macos-13, macos-14, macos-15]
runs-on: ${{ matrix.os }}
name: Build on ${{ matrix.os }} (pothos)
steps:
Expand All @@ -58,6 +70,18 @@ jobs:
brew tap pothosware/homebrew-pothos
brew update
pip3 install --break-system-packages setuptools
echo removing links overwritten by brew install soapysdr
rm -f /usr/local/bin/idle3
rm -f /usr/local/bin/pydoc3
rm -f /usr/local/bin/python3
rm -f /usr/local/bin/python3-config
rm -f /usr/local/share/man/man1/python3.1
rm -f /usr/local/lib/pkgconfig/python3-embed.pc
rm -f /usr/local/lib/pkgconfig/python3.pc
rm -f /usr/local/Frameworks/Python.framework/Headers
rm -f /usr/local/Frameworks/Python.framework/Python
rm -f /usr/local/Frameworks/Python.framework/Resources
rm -f /usr/local/Frameworks/Python.framework/Versions/Current
brew install soapysdr libusb libiio libad9361
- name: Configure
run: cmake -B build
Expand Down

0 comments on commit 70c7605

Please sign in to comment.