From 1c0f5b0475c65d323bd53f35a4a5bcdd359956e4 Mon Sep 17 00:00:00 2001 From: Paul Holzinger Date: Fri, 31 Jan 2025 14:51:27 +0100 Subject: [PATCH 1/2] new images 2025-01-31 Signed-off-by: Paul Holzinger --- .cirrus.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.cirrus.yml b/.cirrus.yml index 2061952b2b..d752909045 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -33,7 +33,7 @@ env: DEBIAN_NAME: "debian-13" # Image identifiers - IMAGE_SUFFIX: "c20250107t132430z-f41f40d13" + IMAGE_SUFFIX: "c20250131t121915z-f41f40d13" # EC2 images FEDORA_AMI: "fedora-aws-${IMAGE_SUFFIX}" From 4a0006db33bea21f3bad242c2bb5f975b27fb924 Mon Sep 17 00:00:00 2001 From: Paul Holzinger Date: Fri, 31 Jan 2025 16:05:39 +0100 Subject: [PATCH 2/2] cirrus: ensure HOME is set in postbuild.sh go 1.24 on rawhide starts to fail with: go: could not parse netrc (GOAUTH=netrc): $HOME is not defined GOAUTH is a new go 1.24 feature, and someone this started to require a $HOME set. We should have $HOME set already in many places but because the lib.sh script was not loaded here it was not set. We have GOPATH set AFAICT otherwise go would never have worked without $HOME. Signed-off-by: Paul Holzinger --- contrib/cirrus/postbuild.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/contrib/cirrus/postbuild.sh b/contrib/cirrus/postbuild.sh index 0d5ee9c4fd..6e7a166182 100755 --- a/contrib/cirrus/postbuild.sh +++ b/contrib/cirrus/postbuild.sh @@ -2,6 +2,9 @@ set -eo pipefail +# shellcheck source=contrib/cirrus/lib.sh +source $(dirname $0)/lib.sh + # Skip this entire script when run under nightly treadmill cron job. # # Treadmill vendors in containers/, which may bring in new versions