aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOliver Smith <osmith@sysmocom.de>2021-12-23 16:36:53 +0100
committerOliver Smith <osmith@sysmocom.de>2021-12-23 16:52:11 +0100
commit140a22747274ab381dbf0ea882a9ce5a8a252ef5 (patch)
tree97201682075d8ea2a678a5d131a9e8719500aa62
parent2aee5862d8f266a38391fe230a7e69136acca048 (diff)
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
-rw-r--r--jenkins-common.sh1
1 files changed, 1 insertions, 0 deletions
diff --git a/jenkins-common.sh b/jenkins-common.sh
index b74b952..1e9435a 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" ;;