Skip to content

Commit

Permalink
Merge pull request #16298 from gsmet/bot-ci-2
Browse files Browse the repository at this point in the history
Use the job name in Surefire Reports artifact names
  • Loading branch information
gsmet authored Apr 6, 2021
2 parents 4ab1d19 + a0805f3 commit e4e7e17
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/ci-actions-incremental.yml
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ jobs:
uses: actions/upload-artifact@v2
if: failure()
with:
name: surefire-reports-jvm-linux-jdk${{matrix.java.name}}
name: "surefire-reports-JVM Tests - JDK ${{matrix.java.name}}"
path: "**/target/*-reports/TEST-*.xml"
retention-days: 2

Expand Down Expand Up @@ -296,7 +296,7 @@ jobs:
uses: actions/upload-artifact@v2
if: failure()
with:
name: surefire-reports-jvm-windows-jdk11
name: "surefire-reports-JVM Tests - JDK 11 Windows"
path: "**/target/*-reports/TEST-*.xml"
retention-days: 2

Expand Down Expand Up @@ -351,7 +351,7 @@ jobs:
uses: actions/upload-artifact@v2
if: failure()
with:
name: surefire-reports-maven-linux-jdk${{matrix.java.name}}
name: "surefire-reports-Maven Tests - JDK ${{matrix.java.name}}"
path: "**/target/*-reports/TEST-*.xml"
retention-days: 2

Expand Down Expand Up @@ -401,7 +401,7 @@ jobs:
uses: actions/upload-artifact@v2
if: failure()
with:
name: surefire-reports-maven-windows-jdk11
name: "surefire-reports-Maven Tests - JDK 11 Windows"
path: "**/target/*-reports/TEST-*.xml"
retention-days: 2

Expand Down Expand Up @@ -466,7 +466,7 @@ jobs:
uses: actions/upload-artifact@v2
if: failure()
with:
name: surefire-reports-gradle-${{ matrix.os.path }}-jdk11
name: "surefire-reports-Gradle Tests - JDK 11 ${{matrix.os.family}}"
path: "**/build/test-results/test/TEST-*.xml"
retention-days: 2

Expand Down Expand Up @@ -521,7 +521,7 @@ jobs:
uses: actions/upload-artifact@v2
if: failure()
with:
name: surefire-reports-devtools-linux-jdk${{matrix.java.name}}
name: "surefire-reports-Devtools Tests - JDK ${{matrix.java.name}}"
path: "**/target/*-reports/TEST-*.xml"
retention-days: 2

Expand Down Expand Up @@ -571,7 +571,7 @@ jobs:
uses: actions/upload-artifact@v2
if: failure()
with:
name: surefire-reports-devtools-windows-jdk${{matrix.java.name}}
name: "surefire-reports-Devtools Tests - JDK 11 Windows"
path: "**/target/*-reports/TEST-*.xml"
retention-days: 2

Expand Down Expand Up @@ -634,7 +634,7 @@ jobs:
uses: actions/upload-artifact@v2
if: failure()
with:
name: surefire-reports-microprofile-tck-tests
name: "surefire-reports-MicroProfile TCKs Tests"
path: "**/target/*-reports/TEST-*.xml"
retention-days: 2

Expand Down Expand Up @@ -720,7 +720,7 @@ jobs:
uses: actions/upload-artifact@v2
if: failure()
with:
name: surefire-reports-native-linux-${{matrix.category}}
name: "surefire-reports-Native Tests - ${{matrix.category}}"
path: "**/target/*-reports/TEST-*.xml"
retention-days: 2
native-tests-windows:
Expand Down Expand Up @@ -803,6 +803,6 @@ jobs:
uses: actions/upload-artifact@v2
if: failure()
with:
name: surefire-reports-native-windows-${{matrix.category}}
name: "surefire-reports-Native Tests - Windows - ${{matrix.category}}"
path: "**/target/*-reports/TEST-*.xml"
retention-days: 2

0 comments on commit e4e7e17

Please sign in to comment.