Skip to content

Commit

Permalink
Run steps in similar order to other OSes
Browse files Browse the repository at this point in the history
  • Loading branch information
argilo committed Nov 29, 2023
1 parent f0ccaa7 commit 158f89a
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,8 +97,6 @@ jobs:
runs-on: windows-2019
name: Windows CI
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup MSYS2
uses: msys2/setup-msys2@v2
with:
Expand All @@ -120,7 +118,7 @@ jobs:
soapysdr:p
fftw:p
rtl-sdr:p
- name: Clone and Build GNU Radio
- name: Clone and build GNU Radio
shell: msys2 {0}
working-directory: ${{ runner.temp }}
run: |
Expand All @@ -140,7 +138,7 @@ jobs:
-DENABLE_GR_NETWORK=ON
cmake --build build
cmake --install build
- name: Clone and Build gr-osmosdr
- name: Clone and build gr-osmosdr
shell: msys2 {0}
working-directory: ${{ runner.temp }}
run: |
Expand All @@ -154,11 +152,15 @@ jobs:
-DENABLE_SOAPY=ON
cmake --build build
cmake --install build
- name: Clone and Build gqrx
- name: Checkout code
uses: actions/checkout@v3
- name: Configure
shell: msys2 {0}
run: |
cmake -S . -B build \
-DCMAKE_INSTALL_PREFIX=C:/gqrx \
-DCMAKE_PREFIX_PATH=C:/gqrx
cmake --build build
cmake --install build
- name: Compile
run: cmake --build build
- name: Install
run: cmake --install build

0 comments on commit 158f89a

Please sign in to comment.