Skip to content

Commit

Permalink
Disable LeakSanitizer in CI
Browse files Browse the repository at this point in the history
It's broken, see rust-lang/rust#111073.
  • Loading branch information
Thomasdezeeuw committed Dec 22, 2024
1 parent a5c7b7d commit f7f1af4
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 5 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/heph.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,9 @@ jobs:
strategy:
fail-fast: false
matrix:
sanitiser: [address, leak, memory, thread]
# LeakSanitizer is broken, see
# <https://github.com/rust-lang/rust/issues/111073>.
sanitiser: [address, memory, thread] # leak
steps:
- uses: actions/checkout@v4
- uses: ./.github/workflows/test_sanitizer
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/http.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ jobs:
strategy:
fail-fast: false
matrix:
sanitiser: [address, leak, memory, thread]
# LeakSanitizer is broken, see
# <https://github.com/rust-lang/rust/issues/111073>.
sanitiser: [address, memory, thread] # leak
steps:
- uses: actions/checkout@v4
- uses: ./.github/workflows/test_sanitizer
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/inbox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,9 @@ jobs:
strategy:
fail-fast: false
matrix:
sanitiser: [address, leak, memory, thread]
# LeakSanitizer is broken, see
# <https://github.com/rust-lang/rust/issues/111073>.
sanitiser: [address, memory, thread] # leak
steps:
- uses: actions/checkout@v4
- uses: ./.github/workflows/test_sanitizer
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/remote.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ jobs:
strategy:
fail-fast: false
matrix:
sanitiser: [address, leak, memory, thread]
# LeakSanitizer is broken, see
# <https://github.com/rust-lang/rust/issues/111073>.
sanitiser: [address, memory, thread] # leak
steps:
- uses: actions/checkout@v4
- uses: ./.github/workflows/test_sanitizer
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/rt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ jobs:
strategy:
fail-fast: false
matrix:
sanitiser: [address, leak, memory, thread]
# LeakSanitizer is broken, see
# <https://github.com/rust-lang/rust/issues/111073>.
sanitiser: [address, memory, thread] # leak
steps:
- uses: actions/checkout@v4
- uses: ./.github/workflows/test_sanitizer
Expand Down

0 comments on commit f7f1af4

Please sign in to comment.