This is an automated email from the ASF dual-hosted git repository.

ctubbsii pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/accumulo-instamo-archetype.git


The following commit(s) were added to refs/heads/main by this push:
     new 911d2f8  Upload test logs on build failure
911d2f8 is described below

commit 911d2f8f4f7fd551f64bf7f6b190f5a6864353b9
Author: Christopher Tubbs <ctubb...@apache.org>
AuthorDate: Mon Oct 12 22:02:43 2020 -0400

    Upload test logs on build failure
---
 .github/workflows/maven.yaml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/.github/workflows/maven.yaml b/.github/workflows/maven.yaml
index 91530bf..7db021c 100644
--- a/.github/workflows/maven.yaml
+++ b/.github/workflows/maven.yaml
@@ -56,18 +56,21 @@ jobs:
       env:
         MAVEN_OPTS: -Djansi.force=true
     - name: Upload unit test results
+      if: ${{ failure() }}
       uses: actions/upload-artifact@v2
       with:
         name: surefire-reports-${{ matrix.profile.name }}
         path: ./**/target/surefire-reports/
         if-no-files-found: ignore
     - name: Upload integration test results
+      if: ${{ failure() }}
       uses: actions/upload-artifact@v2
       with:
         name: failsafe-reports-${{ matrix.profile.name }}
         path: ./**/target/failsafe-reports/
         if-no-files-found: ignore
     - name: Upload mini test logs
+      if: ${{ failure() }}
       uses: actions/upload-artifact@v2
       with:
         name: mini-tests-logs-${{ matrix.profile.name }}

Reply via email to