summaryrefslogtreecommitdiffstats
path: root/.github/workflows/stress-test.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/stress-test.yml')
-rw-r--r--.github/workflows/stress-test.yml29
1 files changed, 29 insertions, 0 deletions
diff --git a/.github/workflows/stress-test.yml b/.github/workflows/stress-test.yml
new file mode 100644
index 00000000..f71fea37
--- /dev/null
+++ b/.github/workflows/stress-test.yml
@@ -0,0 +1,29 @@
+name: Stress Test
+on:
+ push:
+ branches:
+ - master
+
+jobs:
+ stess-test:
+ name: Stress Test
+ runs-on: ubuntu-latest
+ strategy:
+ matrix:
+ stress-test:
+ - simple_echo_tcp
+ steps:
+ - uses: actions/checkout@v2
+ - name: Install Rust
+ run: rustup update stable
+
+ - name: Install Valgrind
+ run: apt 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 }}
+
+ # 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