From 8a473becbcc625a03a2373f22f7688de5763617a Mon Sep 17 00:00:00 2001 From: Chris Evich Date: Wed, 28 May 2025 13:58:51 -0400 Subject: [PATCH] Support CI testing on non-x86_64 Previously, internal CI gating tests sometimes fail because the required registry container image only supports x86_64. Update to the `2.8.2` image tag with support for all primary architectures. Signed-off-by: Chris Evich --- systemtest/helpers.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/systemtest/helpers.bash b/systemtest/helpers.bash index a81c646e..4aa601db 100644 --- a/systemtest/helpers.bash +++ b/systemtest/helpers.bash @@ -10,7 +10,7 @@ SKOPEO_BINARY=${SKOPEO_BINARY:-${TEST_SOURCE_DIR}/../bin/skopeo} SKOPEO_TIMEOUT=${SKOPEO_TIMEOUT:-300} # Default image to run as a local registry -REGISTRY_FQIN=${SKOPEO_TEST_REGISTRY_FQIN:-quay.io/libpod/registry:2} +REGISTRY_FQIN=${SKOPEO_TEST_REGISTRY_FQIN:-quay.io/libpod/registry:2.8.2} ############################################################################### # BEGIN setup/teardown