Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
al8n committed May 20, 2024
1 parent eba3ab3 commit fda018f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -165,17 +165,17 @@ jobs:
- name: build & valgrind (vec backend)
run: |
cargo build --bin test-vec --target-dir .
valgrind --error-exitcode=1 --leak-check=full --show-leak-kinds=all ./debug/test-vec
valgrind --error-exitcode=1 --leak-check=full --track-origins=yes --show-leak-kinds=all ./debug/test-vec
working-directory: integration
- name: build & valgrind (mmap backend)
run: |
cargo build --bin test-mmap --target-dir .
valgrind --error-exitcode=1 --leak-check=full --show-leak-kinds=all ./debug/test-mmap
valgrind --error-exitcode=1 --leak-check=full --track-origins=yes --show-leak-kinds=all ./debug/test-mmap
working-directory: integration
- name: build & valgrind (mmap-anon backend)
run: |
cargo build --bin test-mmap-anon --target-dir .
valgrind --error-exitcode=1 --leak-check=full --show-leak-kinds=all ./debug/test-mmap-anon
valgrind --error-exitcode=1 --leak-check=full --track-origins=yes --show-leak-kinds=all ./debug/test-mmap-anon
working-directory: integration


Expand Down

0 comments on commit fda018f

Please sign in to comment.