Skip to content

Commit

Permalink
Allow building trixie images
Browse files Browse the repository at this point in the history
  • Loading branch information
Salamandar committed Nov 21, 2024
1 parent 5b76505 commit 5c6b323
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion image_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ def main():
help="If passed, logs will be printed to this file",
)

parser.add_argument("debian_version", type=str, choices=["bullseye", "bookworm"])
parser.add_argument("debian_version", type=str, choices=["bullseye", "bookworm", "trixie"])
parser.add_argument(
"distribution", type=str, choices=["stable", "testing", "unstable"]
)
Expand Down
3 changes: 3 additions & 0 deletions update_all_images.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ for variant in build-and-lint before-install all; do
update_image bookworm stable "$variant"
update_image bookworm unstable "$variant"
update_image bookworm testing "$variant"

# Trixie only supports unstable, testing
update_image trixie unstable "$variant"
done

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

0 comments on commit 5c6b323

Please sign in to comment.