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:41:49 UTC

[accumulo] branch 1.9 updated: Ignore some warnings 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 c1b3531  Ignore some warnings in CI workflow (#1671)
c1b3531 is described below

commit c1b3531c136596c7b81fa9868ad5cab9f38de65d
Author: Christopher Tubbs <ct...@apache.org>
AuthorDate: Fri Aug 7 04:40:20 2020 -0400

    Ignore some warnings in CI workflow (#1671)
    
    Ignore warnings produced by upload-artifact step if no files are
    available to upload. Not all jobs in the matrix build are expected to
    produce artifacts, so this isn't a problem worth warning about.
---
 .github/workflows/maven.yaml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/.github/workflows/maven.yaml b/.github/workflows/maven.yaml
index 84e0c47..cd06d1a 100644
--- a/.github/workflows/maven.yaml
+++ b/.github/workflows/maven.yaml
@@ -61,14 +61,17 @@ jobs:
       with:
         name: surefire-reports-${{ matrix.profile.name }}
         path: ./**/target/surefire-reports/
+        if-no-files-found: ignore
     - name: Upload integration test results
       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
       uses: actions/upload-artifact@v2
       with:
         name: mini-tests-logs-${{ matrix.profile.name }}
         path: ./**/target/**/mini-tests/**/logs/
+        if-no-files-found: ignore