aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOliver Smith <osmith@sysmocom.de>2021-12-16 10:35:06 +0100
committerOliver Smith <osmith@sysmocom.de>2021-12-16 10:44:39 +0100
commitf0d09c50afd2b79d45848926c503e63a490e9b95 (patch)
treebe5b1069428a54b94e74890b1c886c5faf10c968
parent521bfea7952ca675f145fef2914906bd3b0287cb (diff)
jobs/registry-update-base-images: one image per line
Make the list of images more git friendly, and sort the debian releases by date. Related: OS#4969 Change-Id: Ic724aa4b2c71aa398ad7f7049e8f3406a3883eaa
-rw-r--r--jobs/registry-update-base-images.yml12
1 files changed, 11 insertions, 1 deletions
diff --git a/jobs/registry-update-base-images.yml b/jobs/registry-update-base-images.yml
index 2dd6e69..6be2ec6 100644
--- a/jobs/registry-update-base-images.yml
+++ b/jobs/registry-update-base-images.yml
@@ -16,7 +16,17 @@
builders:
- shell: |
REGISTRY="registry.osmocom.org"
- IMAGES="debian:stretch debian:buster debian:jessie debian:sid ubuntu:zesty centos:centos7 centos:centos8"
+ IMAGES="
+ debian:jessie
+ debian:stretch
+ debian:buster
+ debian:sid
+
+ ubuntu:zesty
+
+ centos:centos7
+ centos:centos8
+ "
for i in $IMAGES; do
src=$i
dst=${REGISTRY}/$i