Skip to content

Commit

Permalink
Reduce runtime size for Cargo Dev and Sanitizer workflows
Browse files Browse the repository at this point in the history
This should fix recent CI breakages on main.
  • Loading branch information
aaronmondal committed Mar 2, 2024
1 parent 5df8a78 commit 21252c6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .bazelrc
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ test --output_groups=+clippy_checks
build:nightly --@rules_rust//rust/toolchain/channel=nightly

# AddressSanitizer to detect memory leaks.
build:asan --config=nightly -c dbg
build:asan --config=nightly
build:asan --@rules_rust//:extra_rustc_flags=-Zsanitizer=address

# ThreadSanitizer to detect data races. Tests under tsan shouldn't be cached
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nix.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -81,4 +81,4 @@ jobs:
- name: Invoke Cargo build in Nix shell
run: >
nix develop --impure --command
bash -c "cargo test --all"
bash -c "cargo test --all --release"

0 comments on commit 21252c6

Please sign in to comment.