Skip to content

Commit 1824de9

Browse files
committed
Allow building trixie images
1 parent 5b76505 commit 1824de9

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

image_builder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ def main():
124124
help="If passed, logs will be printed to this file",
125125
)
126126

127-
parser.add_argument("debian_version", type=str, choices=["bullseye", "bookworm"])
127+
parser.add_argument("debian_version", type=str, choices=["bullseye", "bookworm", "trixie"])
128128
parser.add_argument(
129129
"distribution", type=str, choices=["stable", "testing", "unstable"]
130130
)

update_all_images.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@ for variant in build-and-lint before-install all; do
2727
update_image bookworm stable "$variant"
2828
update_image bookworm unstable "$variant"
2929
update_image bookworm testing "$variant"
30+
31+
# Trixie only supports unstable, testing
32+
update_image trixie unstable "$variant"
3033
done
3134

3235
# Then remove old images. It might disturb downloads in progress though...

0 commit comments

Comments
 (0)