-
-
Notifications
You must be signed in to change notification settings - Fork 606
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
another MacOS CI fix attempt (this is getting ridiculous, fix your sh…
…it github)
- Loading branch information
1 parent
bf831e3
commit 867a868
Showing
1 changed file
with
38 additions
and
2 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -97,7 +97,25 @@ jobs: | |
run: brew update | ||
|
||
- name: Fix stuff | ||
run: rm -f /usr/local/bin/2to3* /usr/local/bin/idle3* /usr/local/bin/pydoc3* /usr/local/bin/python3* /usr/local/bin/python3-config* && brew reinstall gettext | ||
run: | | ||
# Workaround for https://github.com/actions/runner-images/issues/4020 | ||
brew unlink [email protected] | ||
brew uninstall --force azure-cli | ||
brew uninstall --force aws-sam-cli | ||
brew uninstall --force pipx | ||
brew uninstall --force [email protected] | ||
brew uninstall --force [email protected] | ||
rm -f '/usr/local/bin/2to3' | ||
rm -f '/usr/local/bin/2to3-3.12' | ||
rm -f '/usr/local/bin/idle3' | ||
rm -f '/usr/local/bin/idle3.12' | ||
rm -f '/usr/local/bin/pydoc3' | ||
rm -f '/usr/local/bin/pydoc3.12' | ||
rm -f '/usr/local/bin/python3' | ||
rm -f '/usr/local/bin/python3-config' | ||
rm -f '/usr/local/bin/python3.12' | ||
rm -f '/usr/local/bin/python3.12-config' | ||
brew install python@3 || brew link --overwrite python@3 | ||
- name: Install dependencies | ||
run: brew install pkg-config libusb fftw glfw airspy airspyhf portaudio hackrf libbladerf codec2 zstd autoconf automake libtool && pip3 install mako | ||
|
@@ -154,7 +172,25 @@ jobs: | |
run: brew update | ||
|
||
- name: Fix stuff | ||
run: rm -f /usr/local/bin/2to3* /usr/local/bin/idle3* /usr/local/bin/pydoc3* /usr/local/bin/python3* /usr/local/bin/python3-config* && brew reinstall gettext | ||
run: | | ||
# Workaround for https://github.com/actions/runner-images/issues/4020 | ||
brew unlink [email protected] | ||
brew uninstall --force azure-cli | ||
brew uninstall --force aws-sam-cli | ||
brew uninstall --force pipx | ||
brew uninstall --force [email protected] | ||
brew uninstall --force [email protected] | ||
rm -f '/usr/local/bin/2to3' | ||
rm -f '/usr/local/bin/2to3-3.12' | ||
rm -f '/usr/local/bin/idle3' | ||
rm -f '/usr/local/bin/idle3.12' | ||
rm -f '/usr/local/bin/pydoc3' | ||
rm -f '/usr/local/bin/pydoc3.12' | ||
rm -f '/usr/local/bin/python3' | ||
rm -f '/usr/local/bin/python3-config' | ||
rm -f '/usr/local/bin/python3.12' | ||
rm -f '/usr/local/bin/python3.12-config' | ||
brew install python@3 || brew link --overwrite python@3 | ||
- name: Install dependencies | ||
run: brew install pkg-config libusb fftw glfw airspy airspyhf portaudio hackrf libbladerf codec2 zstd autoconf automake libtool && pip3 install mako | ||
|