File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -275,14 +275,17 @@ jobs:
275
275
276
276
echo "Running Valgrind on ${{ matrix.sample-executable.name }}"
277
277
mkdir -p valgrind_logs
278
+
279
+ echo "::group::Application logs for ${{ matrix.sample-executable.name }}"
278
280
valgrind \
279
281
--leak-check=full \
280
282
--show-leak-kinds=all \
281
283
--track-origins=yes \
282
284
--error-exitcode=1 \
283
- --log-file=valgrind_logs/valgrind_ ${{ matrix.sample-executable.name }}.log \
285
+ --log-file=valgrind_logs/${{ matrix.sample-executable.name }}.log \
284
286
./${{ matrix.sample-executable.name }} "$KVS_STREAM_NAME" ${{ matrix.sample-executable.args }}
285
287
valgrind_exit_code=$?
288
+ echo "::endgroup::"
286
289
287
290
echo "========== Valgrind Output =========="
288
291
cat valgrind_logs/${{ matrix.sample-executable.name }}.log
You can’t perform that action at this time.
0 commit comments