Skip to content

Commit

Permalink
github: check: print logs in case of errors (#320)
Browse files Browse the repository at this point in the history
Otherwise, only a vague error is printed:

   ../test-driver: line 112: 18416 Aborted (core dumped) "$@" >> "$log_file" 2>&1

Signed-off-by: Matthieu Baerts (NGI0) <[email protected]>
  • Loading branch information
matttbe authored Feb 10, 2025
1 parent aa2fb86 commit e269bbc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ccpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: make
run: make -j$(nproc)
- name: make check
run: make check
run: make check || { cat tests/test-suite.log; exit 1; }
- name: make distcheck
run: make distcheck
- name: make install
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ell-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ jobs:
- name: make
run: make -j$(nproc)
- name: make check
run: make check
run: make check || { cat tests/test-suite.log; exit 1; }
2 changes: 1 addition & 1 deletion .github/workflows/ell-min.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ jobs:
- name: make
run: make -j$(nproc)
- name: make check
run: make check
run: make check || { cat tests/test-suite.log; exit 1; }

0 comments on commit e269bbc

Please sign in to comment.