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-testing.git
The following commit(s) were added to refs/heads/main by this push: new 2b7fc53 Upload test logs on build failure 2b7fc53 is described below commit 2b7fc533a1476361bd603c464a355d9be144e517 Author: Christopher Tubbs <ctubb...@apache.org> AuthorDate: Mon Oct 12 22:04:15 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 }}