Skip to content

Commit

Permalink
ci: Use nested groups for examples
Browse files Browse the repository at this point in the history
This fixes #536
  • Loading branch information
eyal0 committed Feb 9, 2021
1 parent aaa1461 commit ea3b21b
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -263,8 +263,8 @@ jobs:
run: |
pushd testing/gerbv_example
ls | parallel -k -j ${NUM_CPUS} --halt soon,fail=1 '
{ pushd {};
echo "Running on {}";
{ echo "::group::Running on {}";
pushd {};
if [[ -f "no-valgrind" ]]; then
cat no-valgrind;
fi;
Expand All @@ -273,8 +273,9 @@ jobs:
else
time valgrind --error-exitcode=127 --errors-for-leak-kinds=definite --leak-check=full -- ../../../pcb2gcode || exit;
fi;
echo "Finished on {}";
popd; } 2>&1'
popd;
echo "::endgroup::";
} 2>&1'
popd
- name: Reset coverage
if: matrix.code_coverage
Expand Down

0 comments on commit ea3b21b

Please sign in to comment.