Skip to content

Commit

Permalink
ci: fail if valgrind complains (#4066)
Browse files Browse the repository at this point in the history
  • Loading branch information
Darksonn committed Aug 24, 2021
1 parent fd52f9f commit 897fed1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ jobs:

# Run with valgrind
- name: Run valgrind test-mem
run: valgrind --leak-check=full --show-leak-kinds=all ./target/debug/test-mem
run: valgrind --error-exitcode=1 --leak-check=full --show-leak-kinds=all ./target/debug/test-mem

# Compile tests
- name: cargo build test-process-signal
Expand All @@ -105,7 +105,7 @@ jobs:

# Run with valgrind
- name: Run valgrind test-process-signal
run: valgrind --leak-check=full --show-leak-kinds=all ./target/debug/test-process-signal
run: valgrind --error-exitcode=1 --leak-check=full --show-leak-kinds=all ./target/debug/test-process-signal

test-unstable:
name: test tokio full --unstable
Expand Down

0 comments on commit 897fed1

Please sign in to comment.