Skip to content

Commit

Permalink
ci: Enable leak sanitizer
Browse files Browse the repository at this point in the history
Signed-off-by: Hubert Figuière <[email protected]>
  • Loading branch information
hfiguiere committed Feb 13, 2024
1 parent c8511a3 commit cefb143
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,11 +83,11 @@ jobs:
- name: Build flatpak
run: ninja -C _build
env:
ASAN_OPTIONS: detect_leaks=0 # Right now we're not fully clean, but this gets us use-after-free etc
ASAN_OPTIONS: detect_leaks=1
- name: Run tests
run: meson test -C _build
env:
ASAN_OPTIONS: detect_leaks=0 # Right now we're not fully clean, but this gets us use-after-free etc
ASAN_OPTIONS: detect_leaks=1
LC_ALL: en_US.UTF-8
- name: Collect logs on failure
if: failure() || cancelled()
Expand Down

0 comments on commit cefb143

Please sign in to comment.