Skip to content

Commit 6bd9b1b

Browse files
authored
ci: temporarily disable LeakSanitizer due to Rust/LLVM bug (#80)
Disabled LeakSanitizer due to upstream issue: rust-lang/rust#111073
1 parent 991a301 commit 6bd9b1b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/tests.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,9 @@ jobs:
2929
run: docker run --rm posixacl-nightly cargo test --color=always
3030
# Run sanitizer checks. Only allowed on Rust nightly. https://github.com/japaric/rust-san
3131
# Cannot run sanitizers from Dockerfile, CAP_PTRACE is disallowed :(
32-
- name: LeakSanitizer
33-
run: docker run --rm --env RUSTFLAGS="-Z sanitizer=leak" posixacl-nightly cargo test --color=always
32+
# DISABLED TEMPORARILY due to https://github.com/rust-lang/rust/issues/111073
33+
#- name: LeakSanitizer
34+
# run: docker run --rm --env RUSTFLAGS="-Z sanitizer=leak" posixacl-nightly cargo test --color=always
3435
- name: AddressSanitizer
3536
# --tests to omit doc tests, doesn't play nice with AddressSanitizer
3637
run: docker run --rm --env RUSTFLAGS="-Z sanitizer=address" posixacl-nightly cargo test --tests --color=always

0 commit comments

Comments
 (0)