Disable compression for GHA artifact uploads of compressed files. (#22441)
This speeds up the upload process itself, which in turn should provide a marginal improvement to CI job times.
Austin S. Hemmelgarn committed
May 8, 2026 at 07:33 UTC
451b14ddbafd5e8f3d5268ddb6cec31dc1d6a261
2 files changed
+5
.github/workflows/build.yml
+4
@@ -186,6 +186,7 @@ jobs:
186
with:
187
name: dist-tarball
188
path: artifacts/*.tar.gz
189
+ compression-level: 0
190
retention-days: 30
191
- name: Failure Notification
192
uses: rtCamp/action-slack-notify@v2
@@ -317,6 +318,7 @@ jobs:
318
with:
319
name: dist-static-${{ matrix.arch }}
320
path: artifacts/*.gz.run
321
+ compression-level: 0
322
retention-days: 30
323
- name: Failure Notification
324
uses: rtCamp/action-slack-notify@v2
@@ -422,6 +424,7 @@ jobs:
424
with:
425
name: windows-x86_64-installer
426
path: packaging\windows\netdata*.msi
427
+ compression-level: 0
428
retention-days: 30
429
- name: Failure Notification
430
uses: rtCamp/action-slack-notify@v2
@@ -581,6 +584,7 @@ jobs:
584
with:
585
name: final-artifacts
586
path: artifacts/*
587
+ compression-level: 0
588
retention-days: 30
589
- name: Failure Notification
590
uses: rtCamp/action-slack-notify@v2
.github/workflows/packaging.yml
+1
@@ -354,6 +354,7 @@ jobs:
354
with:
355
name: ${{ matrix.distro }}-${{ matrix.version }}-${{ matrix.arch }}-packages
356
path: ${{ github.workspace }}/artifacts/*${{ matrix.format }}
357
+ compression-level: 0
358
- name: Test Packages
359
id: test
360
if: needs.file-check.outputs.run == 'true'