We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0655c70 commit 2b3168aCopy full SHA for 2b3168a
.github/workflows/main.yml
@@ -140,15 +140,10 @@ jobs:
140
sudo apt update
141
sudo apt install libc6-dbg
142
micromamba install -c conda-forge valgrind
143
- if [[ "${{ matrix.os }}" == *"arm"* ]]; then
144
- SUPPRESSION_FILE="${{ github.workspace }}/etc/xeus-cpp-valgrind_arm.supp"
145
- else
146
- SUPPRESSION_FILE="${{ github.workspace }}/etc/xeus-cpp-valgrind_x86.supp"
147
- fi
148
valgrind --show-error-list=yes --track-origins=yes --error-exitcode=1 \
149
--show-leak-kinds=definite,possible \
150
--gen-suppressions=all \
151
- --suppressions="${SUPPRESSION_FILE}" \
+ --suppressions="xeus-cpp-valgrind_x86.supp" \
152
test/test_xeus_cpp
153
fi
154
0 commit comments