Skip to content

Commit

Permalink
ci: Show errors when check or check-valgrind fail
Browse files Browse the repository at this point in the history
  • Loading branch information
eyal0 committed Feb 10, 2021
1 parent 7824d6f commit e927689
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -286,13 +286,14 @@ jobs:
env:
VERBOSE: 1
SKIP_GERBERIMPORTER_TESTS_PNG: 1
run: make -j ${NUM_CPUS} check
run: make -j ${NUM_CPUS} check || (cat test-suite.log && false)
- name: Run unit tests with valgrind
if: matrix.os == 'ubuntu'
env:
VERBOSE: 1
SKIP_GERBERIMPORTER_TESTS_PNG: 1
run: make -j ${NUM_CPUS} check-valgrind
run: make -j ${NUM_CPUS} check-valgrind || (cat mem-test-suite.log && false)

- name: Run integration tests
if: matrix.boost == '1_66' && matrix.geos == '3.9.0'
run: |
Expand Down

0 comments on commit e927689

Please sign in to comment.