Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP: #808

Draft
wants to merge 3 commits into
base: main
Choose a base branch
from
Draft

WIP: #808

Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
try running memory sanitizer in CI
  • Loading branch information
syvb committed Jul 10, 2024
commit cfa78bffed386e695bb74ea8362fb92a7b72c636
6 changes: 5 additions & 1 deletion tools/build
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,11 @@ while [ $# -gt 0 ]; do
find_profile
require_pg_version
$nop cargo fetch
$nop cargo test --profile $profile --features "$pg pg_test" --no-default-features
export RUSTC_BOOTSTRAP=1
export __CARGO_TEST_CHANNEL_OVERRIDE_DO_NOT_USE_THIS=nightly
export RUSTFLAGS='-Z sanitizer=memory'
rustup component add rust-src --toolchain 1.74.0-x86_64-unknown-linux-gnu
$nop cargo test -Zbuild-std --profile $profile --target --target x86_64-unknown-linux-gnu --features "$pg pg_test" --no-default-features -- stats_agg::tests
;;

install)
Expand Down
Loading