From: John Mulligan Date: Wed, 8 Oct 2025 21:04:27 +0000 (-0400) Subject: script/build-with-container: add debian 13 (trixie) X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=a13fa091dd6bad35c44076cb7c46cb7bcc17a7ac;p=ceph.git script/build-with-container: add debian 13 (trixie) Signed-off-by: John Mulligan --- diff --git a/src/script/build-with-container.py b/src/script/build-with-container.py index 421ec34dea40..553b6b722e82 100755 --- a/src/script/build-with-container.py +++ b/src/script/build-with-container.py @@ -113,6 +113,7 @@ class DistroKind(StrEnum): UBUNTU2204 = "ubuntu22.04" UBUNTU2404 = "ubuntu24.04" DEBIAN12 = "debian12" + DEBIAN13 = "debian13" @classmethod def uses_dnf(cls): @@ -165,6 +166,9 @@ class DistroKind(StrEnum): str(cls.DEBIAN12): cls.DEBIAN12, "debian-bookworm": cls.DEBIAN12, "bookworm": cls.DEBIAN12, + str(cls.DEBIAN13): cls.DEBIAN13, + "debian-trixie": cls.DEBIAN13, + "trixie": cls.DEBIAN13, } @classmethod @@ -189,6 +193,7 @@ class DefaultImage(StrEnum): UBUNTU2404 = "docker.io/ubuntu:24.04" # debian DEBIAN12 = "docker.io/debian:bookworm" + DEBIAN13 = "docker.io/debian:trixie" class CommandFailed(Exception):