summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorBlas Rodriguez Irizar <rodrigblas@gmail.com>2020-12-08 23:38:25 +0100
committerGitHub <noreply@github.com>2020-12-09 07:38:25 +0900
commitfc7a4b3c6e765d6d2b4ea97266cefbf466d52dc9 (patch)
tree0b92fb11f764a5e88d62a9f79aa2107ebcb75f42 /.github
parente01391351bcb0715f737cefe94e1bc99f19af226 (diff)
chore: fix stress test (#3233)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/stress-test.yml7
1 files changed, 4 insertions, 3 deletions
diff --git a/.github/workflows/stress-test.yml b/.github/workflows/stress-test.yml
index f71fea37..df1eaef5 100644
--- a/.github/workflows/stress-test.yml
+++ b/.github/workflows/stress-test.yml
@@ -1,5 +1,6 @@
name: Stress Test
on:
+ pull_request:
push:
branches:
- master
@@ -18,12 +19,12 @@ jobs:
run: rustup update stable
- name: Install Valgrind
- run: apt install -y valgrind
+ run: sudo apt-get install -y valgrind
# Compiles each of the stress test examples.
- name: Compile stress test examples
- run: cargo build -p stress-test --release --examples ${{ matrix.stress-test }}
+ run: cargo build -p stress-test --release --example ${{ matrix.stress-test }}
# Runs each of the examples using Valgrind. Detects leaks and displays them.
- name: Run valgrind
- run: valgrind --leak-check=full --show-leak-kinds=all ./target/release/${{ matrix.stress-test }} \ No newline at end of file
+ run: valgrind --leak-check=full --show-leak-kinds=all ./target/release/examples/${{ matrix.stress-test }}