mirror of
https://github.com/containers/skopeo.git
synced 2026-05-01 23:01:31 +00:00
The `Skopeo test w/ Sequoia (currently Rawhide)` matrix entry was
introduced in 9753a1a1 ("Also build+test with Sequoia") because
`rust-podman-sequoia` (used by the `containers_image_sequoia` build tag)
shipped only in Rawhide. .cirrus.yml's own comment foreshadowed the
exit condition:
"once we update to a future Fedora release (or if the package is
backported), switch back from Rawhide to the latest Fedora release."
Both halves of that condition are now met:
* Bodhi: rust-podman-sequoia-0.2.0-3.fc43 (stable, F43)
0.3.2-1.fc44 (stable, F44)
* containers/automation_images@46088a81 (2025-11-21) broadened the
install condition in cache_images/fedora_packaging.sh from
"Rawhide only" to `OS_REL_VER -ge 43`. The Fedora cache image and
the skopeo_cidev container at the current IMAGE_SUFFIX
(c20260310t170224z-f43f42d14, F43-based) include podman-sequoia.
Concretely:
* .cirrus.yml — drop the multi-line "currently using rawhide" comment
block and the now-unused RAWHIDE_CACHE_IMAGE_NAME env definition.
* .cirrus.yml — switch the Sequoia matrix entry's VM_IMAGE_NAME from
${RAWHIDE_CACHE_IMAGE_NAME} to ${FEDORA_CACHE_IMAGE_NAME} and drop
the "(currently Rawhide)" suffix from the matrix-entry name.
* .cirrus.yml — drop ${RAWHIDE_CACHE_IMAGE_NAME} from meta_task's
IMGNAMES keepalive list.
* contrib/cirrus/runner.sh — remove the temporary
`[[ "$VM_IMAGE_NAME" =~ "rawhide" ]]` compatibility branch in
_run_setup(); it was specifically annotated as "Eventually, we'll
stop using Rawhide again" and the .cirrus.yml note pointed here for
cleanup.
No IMAGE_SUFFIX bump — that's Renovate's responsibility.
No test-script changes — Sequoia tests continue to use the same
`containers_image_sequoia` build tag against the same Fedora target,
just on the regular Fedora cache image instead of the Rawhide one.
Signed-off-by: Tim Zhou <tizhou@redhat.com>