From 673ce92f622540a3cd2ffd02628212c46e956578 Mon Sep 17 00:00:00 2001 From: Michael Vogt Date: Tue, 23 Jan 2024 15:12:25 +0100 Subject: [PATCH] test: use last known goodl quay.io/centos-bootc/fedora-bootc in tests Because of the issues with the latest https://github.com/CentOS/centos-bootc/issues/184 and https://github.com/osbuild/bootc-image-builder/issues/149 with the latest quay.io/centos-bootc/fedora-bootc:eln this commit moves to the last known good container id. --- test/containerbuild.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/test/containerbuild.py b/test/containerbuild.py index 96b24fc3..7a7f705c 100644 --- a/test/containerbuild.py +++ b/test/containerbuild.py @@ -24,5 +24,9 @@ def container_to_build_ref(): # making "image_type" an "image" tuple (type, container_ref_to_test) return os.getenv( "BIB_TEST_BOOTC_CONTAINER_TAG", - "quay.io/centos-bootc/fedora-bootc:eln", + # using this tag instead of ":eln" until + # https://github.com/CentOS/centos-bootc/issues/184 and + # https://github.com/osbuild/bootc-image-builder/issues/149 + # are fixed + "quay.io/centos-bootc/fedora-bootc:ed19452a30c50900be0b78db5f68d9826cc14a2e402f752535716cffd92b4445", )