[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 4/7] gitlab: purge build files from cirrus CI jobs
From: |
Daniel P . Berrangé |
Subject: |
[PATCH 4/7] gitlab: purge build files from cirrus CI jobs |
Date: |
Wed, 4 Dec 2024 19:48:04 +0000 |
Uploading artifacts in Cirrus CI requires sufficient disk space to
create a tarball of the artifact files. IOW, whatever size the
artifacts are, double that. This results in space pressure on the
FreeBSD jobs due to limited disk size. Purging the .o files from
the meson build directory reclaims significant space.
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
---
.gitlab-ci.d/cirrus/build.yml | 1 +
1 file changed, 1 insertion(+)
diff --git a/.gitlab-ci.d/cirrus/build.yml b/.gitlab-ci.d/cirrus/build.yml
index 9983ab0690..d26a2a788c 100644
--- a/.gitlab-ci.d/cirrus/build.yml
+++ b/.gitlab-ci.d/cirrus/build.yml
@@ -37,6 +37,7 @@ build_task:
do
$MAKE -j$(sysctl -n hw.ncpu) $TARGET V=1 ;
done
+ - find . -not -path 'meson-logs/*' -delete
always:
build_result_artifacts:
path: build/meson-logs/*log.txt
--
2.46.0
[PATCH 4/7] gitlab: purge build files from cirrus CI jobs,
Daniel P . Berrangé <=
[PATCH 5/7] gitlab: enable ccache with Cirrus CI, Daniel P . Berrangé, 2024/12/04
[PATCH 6/7] tests: update libvirt-ci submodule for newer ccache, Daniel P . Berrangé, 2024/12/04
[PATCH 7/7] gitlab: force ccache to validate compiler version, Daniel P . Berrangé, 2024/12/04