summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorDaniel Wirtz <dcode@dcode.io>2020-09-08 20:18:24 +0200
committerGitHub <noreply@github.com>2020-09-08 20:18:24 +0200
commit0fdcf5b51a0c8c379b2d3ad8262aa22bb234f0e9 (patch)
tree31e2c78092cdf6ed35d7d8a791ea20c56ad66c89 /.github
parentcdd069b464c3c70c121398d8e3ae03cbe20b653b (diff)
downloadbinaryen-0fdcf5b51a0c8c379b2d3ad8262aa22bb234f0e9.tar.gz
binaryen-0fdcf5b51a0c8c379b2d3ad8262aa22bb234f0e9.tar.bz2
binaryen-0fdcf5b51a0c8c379b2d3ad8262aa22bb234f0e9.zip
Enable LeakSanitizer on CI again (#3106)
LSan had to be disabled a while ago due to issues with CI runners, but these problems have been resolved indirectly meanwhile by switching to GitHub Actions. Turned out that a few new problems slipped through since then due to not checking anymore, but these are fixed now, so LSan can be enabled again.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml3
1 files changed, 1 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 0c88255a5..1013f26ff 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -117,8 +117,7 @@ jobs:
name: asan
runs-on: ubuntu-latest
env:
- # FIXME we currently must disable LSAN entirely, see #1351
- ASAN_OPTIONS: "detect_leaks=0 symbolize=1"
+ ASAN_OPTIONS: "symbolize=1"
COMPILER_FLAGS: "-fsanitize=address"
steps:
- uses: actions/setup-python@v1