From 5bb3318eae2ddf7790f4c362bc7c82c82a35e57b Mon Sep 17 00:00:00 2001 From: probonopd Date: Sat, 21 Jan 2023 14:58:56 +0100 Subject: [PATCH] Don't cache transient pkg --- .cirrus.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.cirrus.yml b/.cirrus.yml index c2786bfa..3917a790 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -30,6 +30,7 @@ task: Environment_script: # sed -i '' -e 's|quarterly|release_1|g' "${uzip}/etc/pkg/FreeBSD.conf" + - rm -f /usr/local/furybsd/amd64/cache/packages/transient/* || true # Don't cache transient pkg - env - kldload zfs.ko || true - kldload tmpfs.ko || true @@ -52,6 +53,7 @@ task: - df -h - ls -lh /usr/local/furybsd/iso/*.iso || false # Error out if ISO was not produced to mitigate the above # ( cd /usr/local/furybsd/ ; zsyncmake *.iso ) + - rm -f /usr/local/furybsd/amd64/cache/packages/transient/* || true # Don't cache transient pkg Upload_script: - export VER=$(uname -r | cut -d "-" -f 1) # No way to pass on from Build_script to Upload_script?