From c2ed347a2460604667c521ad013aa954c310a2a5 Mon Sep 17 00:00:00 2001 From: Ruslan Migirov Date: Mon, 30 Sep 2024 17:12:11 +0300 Subject: [PATCH] CI : Fix build --- .github/workflows/ci.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6ceaebc48..e4dfec52f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,7 +35,9 @@ jobs: gr-osmosdr \ liborc-0.4-dev \ appstream \ - desktop-file-utils + desktop-file-utils \ + libsoapysdr-dev \ + soapysdr-module-rtlsdr - name: Install Qt5 if: matrix.image == 'ubuntu:20.04' run: | @@ -77,7 +79,7 @@ jobs: # for https://github.com/actions/runner-images/issues/9272 sudo chown -R runner:admin /usr/local/ brew update - brew install airspy boost gnuradio hackrf libbladerf librtlsdr pybind11 six uhd qt@6 || true + brew install airspy boost gnuradio hackrf libbladerf librtlsdr pybind11 six uhd qt@6 soapysdr soapyrtlsdr || true cd /tmp git clone https://gitea.osmocom.org/sdr/gr-osmosdr.git @@ -121,6 +123,8 @@ jobs: volk:p libsndfile:p fftw:p + soapysdr:p + soapyrtlsdr:p - name: Clone and build GNU Radio working-directory: ${{ runner.temp }} run: | @@ -137,7 +141,8 @@ jobs: -DENABLE_GR_DIGITAL=ON \ -DENABLE_GR_FFT=ON \ -DENABLE_GR_FILTER=ON \ - -DENABLE_GR_NETWORK=ON + -DENABLE_GR_NETWORK=ON \ + -DENABLE_GR_SOAPY=ON cmake --build build cmake --install build - name: Clone and build gr-osmosdr