Skip to content

Commit 0facde9

Browse files
committed
revert reports
1 parent 400af65 commit 0facde9

File tree

4 files changed

+8
-24
lines changed

4 files changed

+8
-24
lines changed

.github/workflows/build-test-codecov.yml

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ jobs:
1111
runs-on: ubuntu-latest
1212

1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v3
1515
with:
1616
fetch-depth: 0
1717

1818
- name: Set up JDK 11
19-
uses: actions/setup-java@v4
19+
uses: actions/setup-java@v3
2020
with:
2121
java-version: "11"
2222
distribution: "temurin"
@@ -41,13 +41,3 @@ jobs:
4141
flags: unittests
4242
verbose: true
4343
working-directory: .
44-
45-
- name: Upload test reports
46-
if: always()
47-
uses: actions/upload-artifact@v4
48-
with:
49-
name: test-reports
50-
path: |
51-
**/target/surefire-reports/
52-
**/target/failsafe-reports/
53-
retention-days: 7

.github/workflows/java11-build.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- uses: actions/checkout@v4
1616

1717
- name: Set up JDK 11
18-
uses: actions/setup-java@v4
18+
uses: actions/setup-java@v3
1919
with:
2020
java-version: '11'
2121
distribution: 'temurin'
@@ -29,6 +29,4 @@ jobs:
2929
uses: actions/upload-artifact@v4
3030
with:
3131
name: test-results
32-
path: |
33-
**/target/surefire-reports/
34-
**/target/failsafe-reports/
32+
path: target/surefire-reports

.github/workflows/java17-build.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- uses: actions/checkout@v4
1616

1717
- name: Set up JDK 17
18-
uses: actions/setup-java@v4
18+
uses: actions/setup-java@v3
1919
with:
2020
java-version: '17'
2121
distribution: 'temurin'
@@ -29,6 +29,4 @@ jobs:
2929
uses: actions/upload-artifact@v4
3030
with:
3131
name: test-results
32-
path: |
33-
**/target/surefire-reports/
34-
**/target/failsafe-reports/
32+
path: target/surefire-reports

.github/workflows/java21-build.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- uses: actions/checkout@v4
1616

1717
- name: Set up JDK 21
18-
uses: actions/setup-java@v4
18+
uses: actions/setup-java@v3
1919
with:
2020
java-version: '21'
2121
distribution: 'temurin'
@@ -29,6 +29,4 @@ jobs:
2929
uses: actions/upload-artifact@v4
3030
with:
3131
name: test-results
32-
path: |
33-
**/target/surefire-reports/
34-
**/target/failsafe-reports/
32+
path: target/surefire-reports

0 commit comments

Comments
 (0)