Skip to content

Commit

Permalink
ci: Upload test logs in more build jobs
Browse files Browse the repository at this point in the history
Signed-off-by: Colin Walters <[email protected]>
  • Loading branch information
cgwalters committed Aug 30, 2024
1 parent 942d48a commit 6fb712f
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,12 @@ jobs:
with:
name: composefs.tar
path: composefs.tar
- name: Upload log
uses: actions/upload-artifact@v4
if: always()
with:
name: testlog-asan.txt
path: build/meson-logs/testlog.txt
# This build doesn't enable ASAN, which e.g. makes it easier to use with Rust
build-noasan:
runs-on: ubuntu-latest
Expand All @@ -65,6 +71,12 @@ jobs:
with:
name: composefs-noasan.tar
path: composefs.tar
- name: Upload log
uses: actions/upload-artifact@v4
if: always()
with:
name: testlog-noasan.txt
path: build/meson-logs/testlog.txt
build-baseline:
runs-on: ubuntu-latest
name: "Build on Ubuntu Focal"
Expand Down

0 comments on commit 6fb712f

Please sign in to comment.