Skip to content

Commit

Permalink
ci: Always show logs
Browse files Browse the repository at this point in the history
Logs were skipped due set -e in 26c0247.

Fixes: 26c0247 ("build.sh: set -eux to quit early")
Signed-off-by: Petr Vorel <[email protected]>
  • Loading branch information
pevik committed Apr 16, 2024
1 parent 294a65f commit 688d46f
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@ jobs:
run: ./build.sh build

- name: Show build log
if: always()
run: ./build.sh build-log

- name: Dist
Expand All @@ -145,10 +146,12 @@ jobs:
run: ./build.sh install

- name: Show install log
if: always()
run: ./build.sh install-log

- name: Tests
run: if [ ! "$SKIP_TESTS" ]; then ./build.sh test; else echo "tests skipped"; fi

- name: Show test log
if: always()
run: ./build.sh test-log

0 comments on commit 688d46f

Please sign in to comment.