diff options
author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2025-03-16 17:53:51 +0300 |
---|---|---|
committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2025-03-16 17:53:51 +0300 |
commit | e11d54e8d74099a8b65b8ff21686d7e6db6ac4f4 (patch) | |
tree | 2ab2207c4d2ba82d4886cdc139a916c31c346981 /.github/workflows | |
parent | 95510959997fe189c6cf3fb8444eeb2edcd6d952 (diff) | |
download | sciteco-e11d54e8d74099a8b65b8ff21686d7e6db6ac4f4.tar.gz |
CI: fixup - CFLAGS should not expand to "false"
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ci.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9a289f3..83c40bc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,8 +35,8 @@ jobs: # Enable Adress Sanitizer only on ncurses. # Gtk produces a lot of false negatives. # This will improve the test suite quality, even without Valgrind. - CFLAGS: ${{ matrix.interface == 'ncurses' && '-fsanitize=address -fno-omit-frame-pointer' }} - CXXFLAGS: ${{ matrix.interface == 'ncurses' && '-fsanitize=address -fno-omit-frame-pointer' }} + CFLAGS: ${{ matrix.interface == 'ncurses' && '-fsanitize=address -fno-omit-frame-pointer' || ' ' }} + CXXFLAGS: ${{ matrix.interface == 'ncurses' && '-fsanitize=address -fno-omit-frame-pointer' || ' ' }} MALLOC_REPLACEMENT: ${{ matrix.interface == 'ncurses' && 'no' || 'check' }} run: | autoreconf -i |