From 9f66bdc836623d46c9964e18147e06db6b06e09d Mon Sep 17 00:00:00 2001 From: Anthony Scemama Date: Tue, 12 Oct 2021 11:35:42 +0200 Subject: [PATCH 1/2] Update test-build.yml --- .github/workflows/test-build.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test-build.yml b/.github/workflows/test-build.yml index a54725e..93183c5 100644 --- a/.github/workflows/test-build.yml +++ b/.github/workflows/test-build.yml @@ -41,7 +41,13 @@ jobs: - name: Dist test run: | make distcheck - + - name: Archive test log file + uses: actions/upload-artifact@v2 + with: + name: dist-report + path: test-suite.log + + # x86_macos: # # runs-on: macos-latest From 990cfd756eb5bbf1ce896477961ef6014413441a Mon Sep 17 00:00:00 2001 From: Anthony Scemama Date: Tue, 12 Oct 2021 11:48:48 +0200 Subject: [PATCH 2/2] Update test-build.yml --- .github/workflows/test-build.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/test-build.yml b/.github/workflows/test-build.yml index 93183c5..da399fd 100644 --- a/.github/workflows/test-build.yml +++ b/.github/workflows/test-build.yml @@ -34,6 +34,7 @@ jobs: make -j check ldd tests/test_qmckl_ao - name: Archive test log file + if: failure() uses: actions/upload-artifact@v2 with: name: test-report @@ -42,6 +43,7 @@ jobs: run: | make distcheck - name: Archive test log file + if: failure() uses: actions/upload-artifact@v2 with: name: dist-report