Skip to content

Commit

Permalink
style: clearer build options
Browse files Browse the repository at this point in the history
  • Loading branch information
c-dilks committed Feb 14, 2024
1 parent 537f711 commit 97a9545
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -257,9 +257,15 @@ jobs:
-Dtest_num_events=1000 \
build-iguana
if [ "${{ matrix.mode }}" = "coverage" ]; then
meson configure build-iguana -Db_coverage=true
meson configure \
-Db_coverage=true \
build-iguana
else
meson configure build-iguana -Db_sanitize=$(echo ${{ matrix.mode }} | sed 's;^san_;;') -Db_lundef=false
san=$(echo ${{ matrix.mode }} | sed 's;^san_;;')
meson configure \
-Db_sanitize=$san \
-Db_lundef=false \
build-iguana
fi
- name: dump build options
run: meson configure build-iguana | cat
Expand Down

0 comments on commit 97a9545

Please sign in to comment.