Skip to content

Commit

Permalink
Fix ASAN CI job (#1150)
Browse files Browse the repository at this point in the history
fix ASAN CI job
  • Loading branch information
Robbepop authored Aug 14, 2024
1 parent 8d0f733 commit 79996af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,11 +78,11 @@ jobs:
run: rustup component add rust-src --toolchain nightly-x86_64-unknown-linux-gnu
- name: Build Tests
env:
RUSTFLAGS: "--cfg debug_assertions -Zsanitizer=address"
RUSTFLAGS: "-C debug-assertions -Zsanitizer=address"
run: cargo build --tests --workspace --locked -Zbuild-std --target x86_64-unknown-linux-gnu --verbose
- name: Test
env:
RUSTFLAGS: "--cfg debug_assertions -Zsanitizer=address"
RUSTFLAGS: "-C debug-assertions -Zsanitizer=address"
run: cargo test --workspace --locked --tests -Zbuild-std --target x86_64-unknown-linux-gnu

test:
Expand Down

0 comments on commit 79996af

Please sign in to comment.