From f7f1af42622edaaa543abda490f26c1c0df25acb Mon Sep 17 00:00:00 2001 From: Thomas de Zeeuw Date: Sun, 22 Dec 2024 12:49:31 +0100 Subject: [PATCH] Disable LeakSanitizer in CI It's broken, see https://github.com/rust-lang/rust/issues/111073. --- .github/workflows/heph.yml | 4 +++- .github/workflows/http.yml | 4 +++- .github/workflows/inbox.yml | 4 +++- .github/workflows/remote.yml | 4 +++- .github/workflows/rt.yml | 4 +++- 5 files changed, 15 insertions(+), 5 deletions(-) diff --git a/.github/workflows/heph.yml b/.github/workflows/heph.yml index 30a78c1b..14d54c9f 100644 --- a/.github/workflows/heph.yml +++ b/.github/workflows/heph.yml @@ -48,7 +48,9 @@ jobs: strategy: fail-fast: false matrix: - sanitiser: [address, leak, memory, thread] + # LeakSanitizer is broken, see + # . + sanitiser: [address, memory, thread] # leak steps: - uses: actions/checkout@v4 - uses: ./.github/workflows/test_sanitizer diff --git a/.github/workflows/http.yml b/.github/workflows/http.yml index 7cee7978..21d8c0f6 100644 --- a/.github/workflows/http.yml +++ b/.github/workflows/http.yml @@ -34,7 +34,9 @@ jobs: strategy: fail-fast: false matrix: - sanitiser: [address, leak, memory, thread] + # LeakSanitizer is broken, see + # . + sanitiser: [address, memory, thread] # leak steps: - uses: actions/checkout@v4 - uses: ./.github/workflows/test_sanitizer diff --git a/.github/workflows/inbox.yml b/.github/workflows/inbox.yml index 8d8d4b36..0717cb26 100644 --- a/.github/workflows/inbox.yml +++ b/.github/workflows/inbox.yml @@ -45,7 +45,9 @@ jobs: strategy: fail-fast: false matrix: - sanitiser: [address, leak, memory, thread] + # LeakSanitizer is broken, see + # . + sanitiser: [address, memory, thread] # leak steps: - uses: actions/checkout@v4 - uses: ./.github/workflows/test_sanitizer diff --git a/.github/workflows/remote.yml b/.github/workflows/remote.yml index 52912e76..213c0bac 100644 --- a/.github/workflows/remote.yml +++ b/.github/workflows/remote.yml @@ -32,7 +32,9 @@ jobs: strategy: fail-fast: false matrix: - sanitiser: [address, leak, memory, thread] + # LeakSanitizer is broken, see + # . + sanitiser: [address, memory, thread] # leak steps: - uses: actions/checkout@v4 - uses: ./.github/workflows/test_sanitizer diff --git a/.github/workflows/rt.yml b/.github/workflows/rt.yml index 1b83e3b6..22d34710 100644 --- a/.github/workflows/rt.yml +++ b/.github/workflows/rt.yml @@ -32,7 +32,9 @@ jobs: strategy: fail-fast: false matrix: - sanitiser: [address, leak, memory, thread] + # LeakSanitizer is broken, see + # . + sanitiser: [address, memory, thread] # leak steps: - uses: actions/checkout@v4 - uses: ./.github/workflows/test_sanitizer