diff options
author | Daan De Meyer <daan.j.demeyer@gmail.com> | 2024-06-01 12:54:49 +0200 |
---|---|---|
committer | Daan De Meyer <daan.j.demeyer@gmail.com> | 2024-06-04 12:20:19 +0200 |
commit | cbbffa8355232c542e57131bf41c7becd1bf114a (patch) | |
tree | 4be6e2af4e7cd4f24340f836668f08711839461c /.github | |
parent | Merge pull request #33146 from DaanDeMeyer/clang (diff) | |
download | systemd-cbbffa8355232c542e57131bf41c7becd1bf114a.tar.xz systemd-cbbffa8355232c542e57131bf41c7becd1bf114a.zip |
mkosi: Drop $OPTIMIZATION variable
Let's instead just use $CFLAGS to override the optimization level.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/mkosi.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/mkosi.yml b/.github/workflows/mkosi.yml index 5cf9a0d753..a50798b2f1 100644 --- a/.github/workflows/mkosi.yml +++ b/.github/workflows/mkosi.yml @@ -128,7 +128,7 @@ jobs: # Build debuginfo packages since we'll be publishing the packages as artifacts. WITH_DEBUG=1 # Enabling optimizations significantly speeds up integration tests. - OPTIMIZATION=g + CFLAGS=-Og SANITIZERS=${{ matrix.sanitizers }} MESON_OPTIONS=--werror LLVM=${{ matrix.llvm }} |