File tree Expand file tree Collapse file tree 1 file changed +6
-11
lines changed Expand file tree Collapse file tree 1 file changed +6
-11
lines changed Original file line number Diff line number Diff line change @@ -48,24 +48,19 @@ jobs:
48
48
- name : Run build
49
49
run : |
50
50
chown -R 1000:1000 `pwd`
51
- su `id -un 1000` -c "./gradlew check --parallel && ./gradlew jacocoTestReport && cp -v build/reports/jacoco/test/jacocoTestReport.xml ./jacocoTestReport.xml"
52
-
53
- - uses : actions/upload-artifact@v4
54
- if : ${{ matrix.os }} == "ubuntu-latest"
55
- with :
56
- name : coverage-report-${{ matrix.os }}-${{ matrix.java }}
57
- path : ./jacocoTestReport.xml
51
+ su `id -un 1000` -c "./gradlew check --parallel && ./gradlew jacocoTestReport"
58
52
59
53
- name : Upload Coverage Report
60
- uses : codecov/codecov-action@v5
54
+ if : ${{ !cancelled() && contains(matrix.os, 'ubuntu') && contains(matrix.java, '21') }}
55
+ uses : codecov/codecov-action@v3
61
56
with :
62
57
token : ${{ secrets.CODECOV_TOKEN }}
63
- files : ./jacocoTestReport.xml
58
+ files : ./build/reports/jacoco/test/ jacocoTestReport.xml
64
59
65
60
Check-neural-search-windows :
66
61
strategy :
67
62
matrix :
68
- java : [21, 23]
63
+ java : [ 21, 23 ]
69
64
os : [windows-latest]
70
65
71
66
name : Gradle Check Windows
@@ -121,7 +116,7 @@ jobs:
121
116
needs : Precommit-neural-search-linux
122
117
strategy :
123
118
matrix :
124
- java : [ 21, 23 ]
119
+ java : [21,23 ]
125
120
os : [ ubuntu-latest, windows-latest ]
126
121
name : Multi-Node Integ Test JDK${{ matrix.java }}, ${{ matrix.os }}
127
122
runs-on : ${{ matrix.os }}
You can’t perform that action at this time.
0 commit comments