]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
script/build-with-container: add debian 13 (trixie)
authorJohn Mulligan <jmulligan@redhat.com>
Wed, 8 Oct 2025 21:04:27 +0000 (17:04 -0400)
committerJohn Mulligan <jmulligan@redhat.com>
Wed, 8 Oct 2025 23:31:35 +0000 (19:31 -0400)
Signed-off-by: John Mulligan <jmulligan@redhat.com>
(cherry picked from commit a13fa091dd6bad35c44076cb7c46cb7bcc17a7ac)

src/script/build-with-container.py

index 421ec34dea40b8e0040466f71f69369f5572a6a7..553b6b722e82d4c58cf7b9b4e3a71e11e3b2aaeb 100755 (executable)
@@ -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):