Skip to content

Commit

Permalink
CI: run valgrind tests without SSE2 enabled
Browse files Browse the repository at this point in the history
  • Loading branch information
DoumanAsh committed Aug 24, 2023
1 parent 1ace788 commit 879c0db
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,12 @@ jobs:
CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUNNER: "valgrind --leak-check=full --error-exitcode=1"
run: cargo test --release --features xxh32,const_xxh32,xxh64,const_xxh64,xxh3,const_xxh3

- name: Valgrind Test(No SSE2)
env:
RUSTFLAGS: "-Ctarget-feature=-sse2"
CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUNNER: "valgrind --leak-check=full --error-exitcode=1"
run: cargo test --release --features xxh32,const_xxh32,xxh64,const_xxh64,xxh3,const_xxh3

cross-platform-test:
needs: full-test
runs-on: ubuntu-latest
Expand Down

0 comments on commit 879c0db

Please sign in to comment.