Skip to content

Commit

Permalink
Saving ./test-suite.log
Browse files Browse the repository at this point in the history
For the record,
with input from Melroy van den Berg and RICCIARDI-Adrien.
  • Loading branch information
stappersg committed Dec 5, 2024
1 parent 3c9d491 commit b567057
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: alpine-${{ matrix.compiler }}-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: debian-${{ matrix.compiler }}-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: fedora-${{ matrix.compiler }}-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: opensuse-${{ matrix.compiler }}-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: ${{ matrix.ubuntu_version }}-${{ matrix.compiler }}-log-file
path: ./test-suite.log

0 comments on commit b567057

Please sign in to comment.