Skip to content

Commit

Permalink
ci: Update
Browse files Browse the repository at this point in the history
  • Loading branch information
lhmouse committed Oct 15, 2024
1 parent 2e37f34 commit 009bb16
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/c-cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ jobs:
- name: Run tests
run: >-
CXX='g++-7' meson setup -Denable-debug-checks=true build_ci
export CXX='g++-7';
meson setup -Denable-debug-checks=true -Doptimization=1 build_ci
&& meson test -Cbuild_ci
msys2:
Expand All @@ -57,7 +58,7 @@ jobs:
- name: Run tests
run: >-
meson setup -Denable-debug-checks=true build_ci
meson setup -Denable-debug-checks=true -Doptimization=1 build_ci
&& meson test -Cbuild_ci
macos:
Expand All @@ -75,5 +76,5 @@ jobs:
- name: Run tests
run: >-
export CC='gcc-12' CXX='g++-12';
meson setup -Denable-debug-checks=true build_ci
meson setup -Denable-debug-checks=true -Doptimization=1 build_ci
&& meson test -Cbuild_ci

0 comments on commit 009bb16

Please sign in to comment.