osmith has submitted this change. ( https://gerrit.osmocom.org/c/osmo-ci/+/43532?usp=email )
Change subject: OBS: docker: debian:11: use debian/eol:bullseye ......................................................................
OBS: docker: debian:11: use debian/eol:bullseye
The docker image for debian 11 currently still exists, but given that it is EOL it will disappear soon. Switch to the EOL name already, and adjust the debian 12 line to be consistent while at.
Change-Id: I7c4259d42ad9fb6e1ad8a36a4cc6c3b5c62323bc --- M scripts/obs/lib/docker.py 1 file changed, 4 insertions(+), 2 deletions(-)
Approvals: pespin: Looks good to me, approved Jenkins Builder: Verified fixeria: Looks good to me, but someone else must approve
diff --git a/scripts/obs/lib/docker.py b/scripts/obs/lib/docker.py index 68ed28d..ab6ea9e 100644 --- a/scripts/obs/lib/docker.py +++ b/scripts/obs/lib/docker.py @@ -25,8 +25,10 @@ match distro: case "debian:10": distro = "debian/eol:buster" - # debian:11 points to debian:bullseye upstream - # debian:12 points to debian:bookworm upstream + case "debian:11": + distro = "debian/eol:bullseye" + case "debian:12": + distro = "debian:bookworm" case "debian:13": distro = "debian:trixie"