Skip to content

Commit

Permalink
ci: Build and test on Fedora 38 with GR 3.10.4
Browse files Browse the repository at this point in the history
  • Loading branch information
igorauad committed Jul 7, 2023
1 parent 365936f commit f2f4582
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,18 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
container: ["3.10.3-ubuntu-focal", "3.10.5.1-ubuntu-jammy"]
container: ["3.10.3-ubuntu-focal", "3.10.5.1-ubuntu-jammy", "3.10.4-fedora-38"]
container:
image: igorfreire/gnuradio-oot-dev:${{ matrix.container }}
steps:
- uses: actions/checkout@v2
with:
submodules: "recursive"
- name: Install dependencies
run: apt update && apt install -y libsndfile1-dev
run: |
if [[ ${{ matrix.container }} == *"ubuntu"* ]]; then
apt update && apt install -y libsndfile1-dev;
fi
- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
- name: Build
Expand Down

0 comments on commit f2f4582

Please sign in to comment.