You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by ct...@apache.org on 2020/08/07 08:32:35 UTC

[accumulo] branch 1.9 updated: Publish test results in CI workflow (#1671)

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

ctubbsii pushed a commit to branch 1.9
in repository https://gitbox.apache.org/repos/asf/accumulo.git


The following commit(s) were added to refs/heads/1.9 by this push:
     new ed70fca  Publish test results in CI workflow (#1671)
ed70fca is described below

commit ed70fca24b169b02c8ca4029bf1dd18df09e8b8b
Author: Christopher Tubbs <ct...@apache.org>
AuthorDate: Fri Aug 7 04:30:12 2020 -0400

    Publish test results in CI workflow (#1671)
---
 .github/workflows/maven.yaml | 19 +++++++++++++++++--
 1 file changed, 17 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/maven.yaml b/.github/workflows/maven.yaml
index 21cf1f8..84e0c47 100644
--- a/.github/workflows/maven.yaml
+++ b/.github/workflows/maven.yaml
@@ -33,8 +33,8 @@ jobs:
     strategy:
       matrix:
         profile:
-          - {name: 'Hadoop 2 (default)', args: 'verify javadoc:jar -DskipITs -DforkCount=1C'}
-          - {name: 'Hadoop 3',           args: 'verify javadoc:jar -DskipITs -DforkCount=1C -Dhadoop.profile=3'}
+          - {name: 'Hadoop2', args: 'verify javadoc:jar -DskipITs -DforkCount=1C'}
+          - {name: 'Hadoop3', args: 'verify javadoc:jar -DskipITs -DforkCount=1C -Dhadoop.profile=3'}
       fail-fast: false
     timeout-minutes: 60
     runs-on: ubuntu-latest
@@ -56,4 +56,19 @@ jobs:
       run: mvn -B -V -e -ntp "-Dstyle.color=always" ${{ matrix.profile.args }}
       env:
         MAVEN_OPTS: -Djansi.force=true
+    - name: Upload unit test results
+      uses: actions/upload-artifact@v2
+      with:
+        name: surefire-reports-${{ matrix.profile.name }}
+        path: ./**/target/surefire-reports/
+    - name: Upload integration test results
+      uses: actions/upload-artifact@v2
+      with:
+        name: failsafe-reports-${{ matrix.profile.name }}
+        path: ./**/target/failsafe-reports/
+    - name: Upload mini test logs
+      uses: actions/upload-artifact@v2
+      with:
+        name: mini-tests-logs-${{ matrix.profile.name }}
+        path: ./**/target/**/mini-tests/**/logs/