From 6fb712f3208bc2777cd61b1b7b554f59c293c7af Mon Sep 17 00:00:00 2001 From: Colin Walters Date: Fri, 30 Aug 2024 11:08:12 -0400 Subject: [PATCH] ci: Upload test logs in more build jobs Signed-off-by: Colin Walters --- .github/workflows/test.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index a6b569a9..d8af6d2d 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -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 @@ -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"