Skip to content

Commit

Permalink
Saving ./test-suite.log
Browse files Browse the repository at this point in the history
At least an attempt to save test suite logging.

For the record, main contributor: Melroy van den Berg
  • Loading branch information
stappersg committed Dec 5, 2024
1 parent 3c9d491 commit d554454
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/linux.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@ jobs:
CC: ${{ matrix.compiler }}
run: |
test/test_build.sh alpine
- uses: actions/upload-artifact@v4
if: always()
with:
name: log-file
path: ./test-suite.log

debian:
strategy:
Expand All @@ -31,6 +36,11 @@ jobs:
CC: ${{ matrix.compiler }}
run: |
test/test_build.sh debian
- uses: actions/upload-artifact@v4
if: always()
with:
name: log-file
path: ./test-suite.log

fedora:
strategy:
Expand All @@ -46,6 +56,11 @@ jobs:
CC: ${{ matrix.compiler }}
run: |
test/test_build.sh fedora
- uses: actions/upload-artifact@v4
if: always()
with:
name: log-file
path: ./test-suite.log

opensuse:
strategy:
Expand All @@ -65,6 +80,11 @@ jobs:
CC: ${{ matrix.compiler }}
run: |
test/test_build.sh opensuse
- uses: actions/upload-artifact@v4
if: always()
with:
name: log-file
path: ./test-suite.log

ubuntu:
strategy:
Expand All @@ -80,3 +100,8 @@ jobs:
CC: ${{ matrix.compiler }}
run: |
test/test_build.sh ubuntu
- uses: actions/upload-artifact@v4
if: always()
with:
name: log-file
path: ./test-suite.log

0 comments on commit d554454

Please sign in to comment.