We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dde7484 commit 85a7099Copy full SHA for 85a7099
1 file changed
.github/workflows/ci.yml
@@ -65,9 +65,9 @@ jobs:
65
artifacts_to_download: "unit-test-reports-*"
66
key: "jacoco-coverage-report"
67
68
- run-unit-tests:
+ run-unit-tests-all-jdk:
69
needs: reporting-unit-test-failures
70
- name: "unit tests"
+ name: "unit tests(all jdk)"
71
if: !cancelled() && ( contains( github.event.pull_request.labels.*.name, 'tests:all-jdk') || github.event_name == 'push' )
72
strategy:
73
matrix:
@@ -77,5 +77,4 @@ jobs:
77
with:
78
script: .github/scripts/run-unit-tests.sh -Dtest='${{ matrix.pattern }}' -fae
79
jdk: ${{ matrix.jdk }}
80
- artifact_prefix: "unit-test-reports"
81
- key: ${{ matrix.pattern }}
+ key: "${{matrix.jdk}}:${{ matrix.pattern }}"
0 commit comments