From 70f90fd57090e1342119d719fc3c318df9ed4c71 Mon Sep 17 00:00:00 2001 From: AlexandreRouma Date: Sun, 31 Mar 2024 23:27:07 +0200 Subject: [PATCH] MacOS CI workaround (I hate you microsoft) --- .github/workflows/build_all.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build_all.yml b/.github/workflows/build_all.yml index a8922480..427dbf85 100644 --- a/.github/workflows/build_all.yml +++ b/.github/workflows/build_all.yml @@ -145,7 +145,7 @@ jobs: run: cmake -E make_directory ${{runner.workspace}}/build - name: Install dependencies - run: brew install pkg-config libusb fftw glfw airspy airspyhf portaudio hackrf libbladerf codec2 zstd autoconf automake libtool && pip3 install mako + run: brew install pkg-config libusb fftw glfw airspy airspyhf portaudio hackrf libbladerf codec2 zstd autoconf automake libtool && pip3 install mako --break-system-packages - name: Install volk run: git clone --recursive https://github.com/gnuradio/volk && cd volk && mkdir build && cd build && cmake -DCMAKE_OSX_DEPLOYMENT_TARGET=10.15 -DCMAKE_BUILD_TYPE=Release .. && make -j3 && sudo make install && cd ../../