File tree 3 files changed +20
-4
lines changed
3 files changed +20
-4
lines changed Original file line number Diff line number Diff line change 93
93
94
94
- name : Upload Reports
95
95
if : failure()
96
- uses : actions/upload-artifact@v3
96
+ uses : actions/upload-artifact@v4
97
97
with :
98
- name : test-reports
98
+ name : test-reports-os${{ matrix.entry.opensearch_ref }}-java${{ matrix.entry.java }}
99
99
path : opensearch-java/java-client/build/reports/
100
100
retention-days : 7
Original file line number Diff line number Diff line change 56
56
57
57
- name : Upload Reports
58
58
if : failure()
59
- uses : actions/upload-artifact@v3
59
+ uses : actions/upload-artifact@v4
60
60
with :
61
- name : test-reports
61
+ name : test-reports-os${{ matrix.entry.opensearch_version }}-java${{ matrix.entry.java }}
62
62
path : java-client/build/reports/
63
63
retention-days : 7
64
64
Original file line number Diff line number Diff line change 22
22
23
23
- name : Run Unit Test
24
24
run : ./gradlew clean unitTest
25
+
26
+ - name : Upload Reports
27
+ if : failure()
28
+ uses : actions/upload-artifact@v4
29
+ with :
30
+ name : test-reports-java${{ matrix.java }}-${{ runner.os }}
31
+ path : java-client/build/reports/
32
+ retention-days : 7
25
33
26
34
test-java8 :
27
35
runs-on : ${{ matrix.os }}
48
56
49
57
- name : Run Unit Test
50
58
run : ./gradlew clean unitTest -D"runtime.java=8"
59
+
60
+ - name : Upload Reports
61
+ if : failure()
62
+ uses : actions/upload-artifact@v4
63
+ with :
64
+ name : test-reports-java8-${{ runner.os }}
65
+ path : java-client/build/reports/
66
+ retention-days : 7
You can’t perform that action at this time.
0 commit comments