From 9dc2c0aa9316f3daf18935d8b780145de3d4f03b Mon Sep 17 00:00:00 2001 From: David Galloway Date: Wed, 23 Jul 2025 15:17:55 -0400 Subject: [PATCH] script/build-with-container: Add Rocky 9 Signed-off-by: David Galloway (cherry picked from commit 2996390144f7d0a0ea94edcf95ca7b89c6a62013) --- src/script/build-with-container.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/script/build-with-container.py b/src/script/build-with-container.py index 6a3b2689799..4dd35517f3e 100755 --- a/src/script/build-with-container.py +++ b/src/script/build-with-container.py @@ -105,6 +105,7 @@ class DistroKind(StrEnum): CENTOS8 = "centos8" CENTOS9 = "centos9" FEDORA41 = "fedora41" + ROCKY9 = "rocky9" ROCKY10 = "rocky10" UBUNTU2204 = "ubuntu22.04" UBUNTU2404 = "ubuntu24.04" @@ -116,6 +117,7 @@ class DistroKind(StrEnum): cls.CENTOS8, cls.CENTOS9, cls.FEDORA41, + cls.ROCKY9, cls.ROCKY10, } @@ -135,6 +137,8 @@ class DistroKind(StrEnum): "centos9stream": cls.CENTOS9, str(cls.FEDORA41): cls.FEDORA41, "fc41": cls.FEDORA41, + str(cls.ROCKY9): cls.ROCKY9, + 'rockylinux9': cls.ROCKY9, str(cls.ROCKY10): cls.ROCKY10, 'rockylinux10': cls.ROCKY10, str(cls.UBUNTU2204): cls.UBUNTU2204, @@ -155,6 +159,7 @@ class DefaultImage(StrEnum): CENTOS8 = "quay.io/centos/centos:stream8" CENTOS9 = "quay.io/centos/centos:stream9" FEDORA41 = "registry.fedoraproject.org/fedora:41" + ROCKY9 = "docker.io/rockylinux/rockylinux:9" ROCKY10 = "docker.io/rockylinux/rockylinux:10" UBUNTU2204 = "docker.io/ubuntu:22.04" UBUNTU2404 = "docker.io/ubuntu:24.04" -- 2.39.5