Skip to content

Commit

Permalink
ci: add GRASS8 to build tests
Browse files Browse the repository at this point in the history
build test fedora 36 w/ grass8 (experimental)
allow experimental builds to fail
  • Loading branch information
t0b3 committed Apr 20, 2022
1 parent c49c2a1 commit 7617580
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ jobs:
RUN_FLAKY_TESTS: ${{ contains( github.event.pull_request.labels.*.name, 'run flaky tests') }}

runs-on: ubuntu-latest
continue-on-error: ${{ matrix.experimental }}

strategy:
matrix:
# tests run on 20.04 (Qt 5.12), compile test on 20.10 (Qt 5.14) and 21.04 (Qt 5.15)
include:
- distro-version: '20.04'
qt-version: 5
Expand All @@ -45,7 +45,10 @@ jobs:
with-3d: ON
with-quick: ON
patch-qt-3d: true
with-grass7: OFF
with-grass8: OFF
LD_PRELOAD: /lib/x86_64-linux-gnu/libSegFault.so
experimental: false

- distro-version: '21.10'
qt-version: 5
Expand All @@ -56,9 +59,12 @@ jobs:
with-3d: OFF
with-quick: ON
patch-qt-3d: false
with-grass7: OFF
with-grass8: OFF
LD_PRELOAD: /lib/x86_64-linux-gnu/libSegFault.so
experimental: false

- distro-version: '34'
- distro-version: '36'
qt-version: 6
run-tests: true
docker-tag-suffix: ''
Expand All @@ -67,7 +73,10 @@ jobs:
with-3d: OFF
with-quick: OFF
patch-qt-3d: false
with-grass7: OFF
with-grass8: ON
LD_PRELOAD: ''
experimental: false


fail-fast: false
Expand Down Expand Up @@ -166,6 +175,8 @@ jobs:
--env WITH_QUICK=${{ matrix.with-quick }} \
--env WITH_3D=${{ matrix.with-3d }} \
--env PATCH_QT_3D=${{ matrix.patch-qt-3d }} \
--env WITH_GRASS7=${{ matrix.with-grass7 }} \
--env WITH_GRASS8=${{ matrix.with-grass8 }} \
--env LD_PRELOAD=${{ matrix.LD_PRELOAD }} \
qgis3-build-deps \
/root/QGIS/.docker/docker-qgis-build.sh
Expand Down Expand Up @@ -300,7 +311,7 @@ jobs:
test-batch: ORACLE
docker-target: binary-for-oracle

- distro-version: '34'
- distro-version: '36'
qt-version: 6
test-batch: ALL_BUT_PROVIDERS
docker-target: single
Expand Down

0 comments on commit 7617580

Please sign in to comment.