Skip to content

Commit

Permalink
Save build log
Browse files Browse the repository at this point in the history
At least an attempt to save build log.
Actual need was saving ./test-suite.log
  • Loading branch information
stappersg committed Dec 5, 2024
1 parent 3c9d491 commit ee5c3e7
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: *.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: *.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: *.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: *.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: *.log

0 comments on commit ee5c3e7

Please sign in to comment.