@@ -114,33 +114,13 @@ jobs:
114
114
run : |
115
115
./mvnw $MAVEN_ARGS ${{ matrix.os.maven.args }} clean install \
116
116
-Pjqassistant -Pdist -Prelocation
117
- env :
118
- DEVELOCITY_ACCESS_KEY : " ${{ secrets.DEVELOCITY_ACCESS_KEY || '' }}"
119
- # For jobs running on 'pull_request', upload build scan data.
120
- # The actual publishing must be done in a separate job (see ci-report.yml).
121
- # We don't write to the remote cache as that would be unsafe.
122
- - name : Upload GitHub Actions artifact for the Develocity build scan
123
- uses : actions/upload-artifact@v4
124
- if : " ${{ github.event_name == 'pull_request' && !cancelled() }}"
125
- with :
126
- name : build-scan-data-initial-${{ matrix.os.name }}
127
- path : ~/.m2/.develocity/build-scan-data
128
117
129
118
- name : Build code and run tests in container mode
130
119
run : |
131
120
./mvnw $MAVEN_ARGS ${{ matrix.os.maven.args }} clean verify \
132
121
-Pjqassistant -Pskip-checks \
133
122
-am -pl :hibernate-validator-tck-runner \
134
123
-Dincontainer -Dincontainer-prepared
135
- env :
136
- DEVELOCITY_ACCESS_KEY : " ${{ secrets.DEVELOCITY_ACCESS_KEY || '' }}"
137
- # Same as above, but for the build scan of the latest Maven run.
138
- - name : Upload GitHub Actions artifact for the Develocity build scan
139
- uses : actions/upload-artifact@v4
140
- if : " ${{ github.event_name == 'pull_request' && !cancelled() }}"
141
- with :
142
- name : build-scan-data-tck-container-${{ matrix.os.name }}
143
- path : ~/.m2/.develocity/build-scan-data
144
124
145
125
- name : Omit produced artifacts from build cache
146
126
run : rm -r ~/.m2/repository/org/hibernate/validator
0 commit comments