Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
cozycactus committed Nov 28, 2023
1 parent f87ecf3 commit 968b2f9
Showing 1 changed file with 16 additions and 18 deletions.
34 changes: 16 additions & 18 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,38 +124,36 @@ jobs:
- name: Clone and Build GNU Radio
shell: msys2 {0}
run: |
git clone --recursive https://github.com/cozycactus/gnuradio.git
git clone https://github.com/gnuradio/gnuradio.git
cd gnuradio
git checkout fixmingw64
mkdir build && cd build
cmake -DCMAKE_INSTALL_PREFIX=C:/gqrx -G Ninja ..
ninja
ninja install
cmake -S . -B build -DCMAKE_INSTALL_PREFIX=C:/gqrx \
-DENABLE_DEFAULT=OFF -DENABLE_GNURADIO_RUNTIME=ON \
-DENABLE_GR_ANALOG=ON -DENABLE_GR_AUDIO=ON \
-DENABLE_GR_BLOCKS=ON -DENABLE_GR_DIGITAL=ON \
-DENABLE_GR_FFT=ON -DENABLE_GR_FILTER=ON -DENABLE_GR_NETWORK=ON
cmake --build build
cmake --install build
- name: Clone and Build gr-osmosdr
shell: msys2 {0}
run: |
git clone https://gitea.osmocom.org/sdr/gr-osmosdr.git
cd gr-osmosdr
mkdir build && cd build
cmake -DCMAKE_INSTALL_PREFIX=C:/gqrx \
cmake -S . -B build -DCMAKE_INSTALL_PREFIX=C:/gqrx \
-DCMAKE_PREFIX_PATH=C:/gqrx \
-DENABLE_DEFAULT=OFF \
-DENABLE_RTL=ON \
-DENABLE_SOAPY=ON \
-G Ninja ..
ninja
ninja install
-DENABLE_SOAPY=ON
cmake --build build
cmake --install build
- name: Clone and Build gqrx
shell: msys2 {0}
run: |
git clone https://github.com/gqrx-sdr/gqrx.git
cd gqrx
mkdir build && cd build
cmake -DCMAKE_INSTALL_PREFIX=C:/gqrx \
-DCMAKE_PREFIX_PATH=C:/gqrx \
-G Ninja ..
ninja
ninja install
cmake -S . -B build -DCMAKE_INSTALL_PREFIX=C:/gqrx \
-DCMAKE_PREFIX_PATH=C:/gqrx
cmake --build build
cmake --install build
Expand Down

0 comments on commit 968b2f9

Please sign in to comment.