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-maven-plugin.git


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

commit 8c4fb172ed54daf1f79fb856f13938d64b772956
Author: Christopher Tubbs <ctubb...@apache.org>
AuthorDate: Mon Oct 12 22:03:07 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 b7eae85..80ccd27 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