From c659c4b007a42b6551e158ffdeddd86c23cbc35e Mon Sep 17 00:00:00 2001 From: Alexandre Date: Tue, 16 Nov 2021 12:55:03 -0600 Subject: [PATCH] FSwitched to self built volk for Mac CI --- .github/workflows/build_all.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build_all.yml b/.github/workflows/build_all.yml index a5e78f00..74348e26 100644 --- a/.github/workflows/build_all.yml +++ b/.github/workflows/build_all.yml @@ -87,7 +87,10 @@ jobs: run: brew update - name: Install dependencies - run: brew install fftw glew glfw volk airspy airspyhf portaudio hackrf rtl-sdr libbladerf codec2 + run: brew install fftw glew glfw airspy airspyhf portaudio hackrf rtl-sdr libbladerf codec2 + + - name: Install volk + run: git clone https://github.com/gnuradio/volk && cd volk && mkdir build && cd build && cmake .. && make && sudo make install && cd ../../ - name: Prepare CMake working-directory: ${{runner.workspace}}/build