Skip to content

Commit f2add23

Browse files
committed
chore: prevent running out of disk space
1 parent f6120f5 commit f2add23

File tree

2 files changed

+4
-50
lines changed

2 files changed

+4
-50
lines changed

.github/workflows/lf-build-linux-aarch64.yml

Lines changed: 2 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -129,36 +129,13 @@ jobs:
129129
- name: 'Upload the compiled plugins'
130130
uses: 'actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08' # v4.6.0
131131
with:
132-
compression-level: 7
132+
compression-level: 8
133133
path: '${{ env.LFMP_DIR_COMPILED }}/*'
134134
name: "lfmp-${{ env.LFMP_VERSION }}-${{ env.LFMP_PACKAGE_ITERATION }}.compiled.${{ env.LFMP_ARCH }}.${{ env.LFMP_TARGET_DISTROS }}"
135135

136136
- name: 'Upload the packages (rpm, deb, tar, zip)'
137137
uses: 'actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08' # v4.6.0
138138
with:
139-
compression-level: 7
139+
compression-level: 8
140140
path: '${{ env.LFMP_DIR_PACKAGED }}/*'
141141
name: "lfmp-${{ env.LFMP_VERSION }}-${{ env.LFMP_PACKAGE_ITERATION }}.packaged.${{ env.LFMP_ARCH }}.${{ env.LFMP_TARGET_DISTROS }}"
142-
143-
upload-artifacts:
144-
needs: 'build-linux-aarch64'
145-
runs-on:
146-
- 'ubuntu-24.04-arm'
147-
148-
steps:
149-
- name: Harden the runner (Audit all outbound calls)
150-
uses: step-security/harden-runner@4d991eb9b905ef189e4c376166672c3f2f230481 # v2.11.0
151-
with:
152-
egress-policy: audit
153-
154-
- name: 'Download all artifacts'
155-
uses: 'actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8'
156-
with:
157-
path: '/tmp/artifacts'
158-
159-
- name: 'Upload the final result (one file)'
160-
uses: 'actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08' # v4.6.0
161-
with:
162-
compression-level: 7
163-
path: '/tmp/artifacts/*'
164-
name: "lfmp"

.github/workflows/lf-build-linux-x86_64.yml

Lines changed: 2 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -129,36 +129,13 @@ jobs:
129129
- name: 'Upload the compiled plugins'
130130
uses: 'actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08' # v4.6.0
131131
with:
132-
compression-level: 7
132+
compression-level: 8
133133
path: '${{ env.LFMP_DIR_COMPILED }}/*'
134134
name: "lfmp-${{ env.LFMP_VERSION }}-${{ env.LFMP_PACKAGE_ITERATION }}.compiled.${{ env.LFMP_ARCH }}.${{ env.LFMP_TARGET_DISTROS }}"
135135

136136
- name: 'Upload the packages (rpm, deb, tar, zip)'
137137
uses: 'actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08' # v4.6.0
138138
with:
139-
compression-level: 7
139+
compression-level: 8
140140
path: '${{ env.LFMP_DIR_PACKAGED }}/*'
141141
name: "lfmp-${{ env.LFMP_VERSION }}-${{ env.LFMP_PACKAGE_ITERATION }}.packaged.${{ env.LFMP_ARCH }}.${{ env.LFMP_TARGET_DISTROS }}"
142-
143-
upload-artifacts:
144-
needs: 'build-linux-x86_64'
145-
runs-on:
146-
- 'ubuntu-24.04'
147-
148-
steps:
149-
- name: Harden the runner (Audit all outbound calls)
150-
uses: step-security/harden-runner@4d991eb9b905ef189e4c376166672c3f2f230481 # v2.11.0
151-
with:
152-
egress-policy: audit
153-
154-
- name: 'Download all artifacts'
155-
uses: 'actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8'
156-
with:
157-
path: '/tmp/artifacts'
158-
159-
- name: 'Upload the final result (one file)'
160-
uses: 'actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08' # v4.6.0
161-
with:
162-
compression-level: 7
163-
path: '/tmp/artifacts/*'
164-
name: "lfmp"

0 commit comments

Comments
 (0)