Skip to content

Commit

Permalink
actions: fix coverage build
Browse files Browse the repository at this point in the history
  • Loading branch information
mcallegari committed Nov 23, 2024
1 parent 7fbefde commit 21de26f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -171,8 +171,13 @@ jobs:
$QMAKE QMAKE_CXX="$CXX" QMAKE_CC="$CC" QMAKE_LINK="$CXX" QMAKE_LINK_SHLIB="$CXX" CONFIG+=coverage
- name: Build
if: ${{ ! startsWith( matrix.task, 'coverage') }}
run: cd build && make -j $NPROC

- name: Build Coverage
if: ${{ startsWith( matrix.task, 'coverage') }}
run: make -j $NPROC

- name: Test
if: ${{ ! startsWith( matrix.task, 'coverage') }}
run: make check
Expand Down

0 comments on commit 21de26f

Please sign in to comment.