Skip to content

Disable LeakSanitizer in CI #27

Disable LeakSanitizer in CI

Disable LeakSanitizer in CI #27

Workflow file for this run

name: Heph-remote
on:
push:
branches: [ main ]
paths:
- "remote/**"
- ".github/workflows/remote.yml"
pull_request:
branches: [ main ]
paths:
- "remote/**"
- ".github/workflows/remote.yml"
permissions:
contents: read
env:
CARGO_TERM_COLOR: always
RUST_BACKTRACE: full
jobs:
Test:
runs-on: ubuntu-24.04
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- name: Install Cargo-hack
run: cargo install --debug cargo-hack
- uses: ./.github/workflows/test
with:
working-directory: remote
Sanitiser:
runs-on: ubuntu-24.04
timeout-minutes: 10
strategy:
fail-fast: false
matrix:
# LeakSanitizer is broken, see

Check failure on line 35 in .github/workflows/remote.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/remote.yml

Invalid workflow file

You have an error in your yaml syntax on line 35
# <https://github.com/rust-lang/rust/issues/111073>.
sanitiser: [address, memory, thread] # leak
steps:
- uses: actions/checkout@v4
- uses: ./.github/workflows/test_sanitizer
with:
sanitizer: ${{ matrix.sanitiser }}
working-directory: remote