From 140a22747274ab381dbf0ea882a9ce5a8a252ef5 Mon Sep 17 00:00:00 2001 From: Oliver Smith Date: Thu, 23 Dec 2021 16:36:53 +0100 Subject: [PATCH] jenkins-common.sh: add d9 to upstream_distro func After the default UPSTREAM_DISTRO was changed from debian:stretch to debian:bullseye, the "debian9-repo-install-test" container has gotten built with bullseye instead of stretch. This is the reason for failures of the jenkins job Osmocom-repo-install-debian9 we have seen over the past days. With this patch applied, it runs through again: https://jenkins.osmocom.org/jenkins/job/Osmocom-repo-install-debian9/339/ Change-Id: I98a19184ba936114c03cd5cc4f54a3173cbd9cfe --- jenkins-common.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/jenkins-common.sh b/jenkins-common.sh index b74b952c..1e9435a7 100644 --- a/jenkins-common.sh +++ b/jenkins-common.sh @@ -42,6 +42,7 @@ docker_upstream_distro_from_image_name() { osmo-*-centos8) echo "centos:centos8"; ;; centos7-*) echo "centos:centos7" ;; centos8-*) echo "centos:centos8" ;; + debian9-*) echo "debian:stretch" ;; debian10-*) echo "debian:buster" ;; debian11-*) echo "debian:bullseye" ;; debian-stretch-*) echo "debian:stretch" ;;