Skip to content

Commit 7ffe814

Browse files
committed
Adjust the log file name
1 parent d2d6bc0 commit 7ffe814

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/samples.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,14 +275,17 @@ jobs:
275275
276276
echo "Running Valgrind on ${{ matrix.sample-executable.name }}"
277277
mkdir -p valgrind_logs
278+
279+
echo "::group::Application logs for ${{ matrix.sample-executable.name }}"
278280
valgrind \
279281
--leak-check=full \
280282
--show-leak-kinds=all \
281283
--track-origins=yes \
282284
--error-exitcode=1 \
283-
--log-file=valgrind_logs/valgrind_${{ matrix.sample-executable.name }}.log \
285+
--log-file=valgrind_logs/${{ matrix.sample-executable.name }}.log \
284286
./${{ matrix.sample-executable.name }} "$KVS_STREAM_NAME" ${{ matrix.sample-executable.args }}
285287
valgrind_exit_code=$?
288+
echo "::endgroup::"
286289
287290
echo "========== Valgrind Output =========="
288291
cat valgrind_logs/${{ matrix.sample-executable.name }}.log

0 commit comments

Comments
 (0)