Skip to content

Commit 0df2aaf

Browse files
committed
Don't tar build-scan-data in GitHub actions workflows
We don't need tars, as workflow artifacts are already zipped.
1 parent 3037821 commit 0df2aaf

File tree

2 files changed

+5
-11
lines changed

2 files changed

+5
-11
lines changed

.github/workflows/ci-report.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -56,11 +56,11 @@ jobs:
5656
run: |
5757
shopt -s nullglob # Don't run the loop below if there are no artifacts
5858
status=0
59+
mkdir -p ~/.m2/.develocity/
5960
for build_scan_data_directory in /tmp/downloaded-build-scan-data/*
6061
do
6162
rm -rf ~/.m2/.develocity/build-scan-data
62-
mkdir -p ~/.m2/.develocity/build-scan-data
63-
tar -xzf "$build_scan_data_directory/build-scan-data.tgz" -C ~/.m2/.develocity/build-scan-data \
63+
mv "$build_scan_data_directory" ~/.m2/.develocity/build-scan-data \
6464
&& ./mvnw $MAVEN_ARGS develocity:build-scan-publish-previous || status=1
6565
done
6666
exit $status

.github/workflows/ci.yml

+3-9
Original file line numberDiff line numberDiff line change
@@ -119,18 +119,15 @@ jobs:
119119
-Pjqassistant -Pdist -Pci-build -DskipITs
120120
env:
121121
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.
123123
# The actual publishing must be done in a separate job (see ci-report.yml).
124124
# 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 .
128125
- name: Upload GitHub Actions artifact for the Develocity build scan
129126
uses: actions/upload-artifact@v4
130127
if: "${{ github.event_name == 'pull_request' && !cancelled() }}"
131128
with:
132129
name: build-scan-data-initial-${{ matrix.os.name }}
133-
path: build-scan-data.tgz
130+
path: ~/.m2/.develocity/build-scan-data
134131

135132
- name: Run integration tests in the default environment
136133
run: |
@@ -140,15 +137,12 @@ jobs:
140137
env:
141138
DEVELOCITY_ACCESS_KEY: "${{ secrets.DEVELOCITY_ACCESS_KEY || '' }}"
142139
# 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 .
146140
- name: Upload GitHub Actions artifact for the Develocity build scan
147141
uses: actions/upload-artifact@v4
148142
if: "${{ github.event_name == 'pull_request' && !cancelled() }}"
149143
with:
150144
name: build-scan-data-integrationtest-${{ matrix.os.name }}
151-
path: build-scan-data.tgz
145+
path: ~/.m2/.develocity/build-scan-data
152146

153147
- name: Docker cleanup
154148
run: ./ci/docker-cleanup.sh

0 commit comments

Comments
 (0)