@@ -119,18 +119,15 @@ jobs:
119
119
-Pjqassistant -Pdist -Pci-build -DskipITs
120
120
env :
121
121
DEVELOCITY_ACCESS_KEY : " ${{ secrets.DEVELOCITY_ACCESS_KEY || '' }}"
122
- # For jobs running on 'pull_request', tar and upload build scan data.
122
+ # For jobs running on 'pull_request', upload build scan data.
123
123
# The actual publishing must be done in a separate job (see ci-report.yml).
124
124
# We don't write to the remote cache as that would be unsafe.
125
- - name : Tar build scan content pushed to subsequent jobs
126
- if : " ${{ github.event_name == 'pull_request' && !cancelled() }}"
127
- run : tar -czf build-scan-data.tgz -C ~/.m2/.develocity/build-scan-data .
128
125
- name : Upload GitHub Actions artifact for the Develocity build scan
129
126
uses : actions/upload-artifact@v4
130
127
if : " ${{ github.event_name == 'pull_request' && !cancelled() }}"
131
128
with :
132
129
name : build-scan-data-initial-${{ matrix.os.name }}
133
- path : build-scan-data.tgz
130
+ path : ~/.m2/.develocity/ build-scan-data
134
131
135
132
- name : Run integration tests in the default environment
136
133
run : |
@@ -140,15 +137,12 @@ jobs:
140
137
env :
141
138
DEVELOCITY_ACCESS_KEY : " ${{ secrets.DEVELOCITY_ACCESS_KEY || '' }}"
142
139
# Same as above, but for the build scan of the latest Maven run.
143
- - name : Tar build scan content pushed to subsequent jobs
144
- if : " ${{ github.event_name == 'pull_request' && !cancelled() }}"
145
- run : tar -czf build-scan-data.tgz -C ~/.m2/.develocity/build-scan-data .
146
140
- name : Upload GitHub Actions artifact for the Develocity build scan
147
141
uses : actions/upload-artifact@v4
148
142
if : " ${{ github.event_name == 'pull_request' && !cancelled() }}"
149
143
with :
150
144
name : build-scan-data-integrationtest-${{ matrix.os.name }}
151
- path : build-scan-data.tgz
145
+ path : ~/.m2/.develocity/ build-scan-data
152
146
153
147
- name : Docker cleanup
154
148
run : ./ci/docker-cleanup.sh
0 commit comments