File tree Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -97,25 +97,24 @@ jobs:
97
97
manylinux : auto
98
98
args : --manifest-path examples/simple/Cargo.toml
99
99
100
- address-sanitizer :
100
+ valgrind :
101
101
runs-on : ubuntu-22.04
102
102
needs : [lint, check-msrv, examples]
103
103
steps :
104
104
- uses : actions/checkout@v3
105
105
- uses : actions-rs/toolchain@v1
106
106
with :
107
- toolchain : nightly
107
+ toolchain : stable
108
108
profile : minimal
109
- components : rust-src
110
109
default : true
111
110
- uses : Swatinem/rust-cache@v2
112
111
continue-on-error : true
113
112
- run : |
113
+ sudo apt-get install --yes valgrind
114
114
pip install numpy
115
- cargo test -Zbuild-std --target x86_64-unknown-linux-gnu -- release --lib --tests
115
+ cargo test --all-features -- release
116
116
env:
117
- RUSTFLAGS: -Zsanitizer=address
118
- ASAN_OPTIONS: detect_leaks=0
117
+ CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUNNER: valgrind --leak-check=no --error-exitcode=1
119
118
120
119
check-msrv :
121
120
runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments