From ad77890ede7b484594d86b70885f595ca7dd66c4 Mon Sep 17 00:00:00 2001 From: Diederik de Haas Date: Thu, 3 Nov 2022 21:55:32 +0100 Subject: [PATCH] Switch to using images maintained by salsa ci team Debian's Salsa team has their own registry of images they maintain, so use them instead of ones maintained by gitlab. At https://salsa.debian.org/salsa-ci-team/pipeline/container_registry one can view the various images they maintain. Switch to using 'unstable' instead of 'sid'. The idea is to later also add steps based on 'stable' and then 'unstable' matches better. --- debian/salsa-ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/debian/salsa-ci.yml b/debian/salsa-ci.yml index cd07cb5..e7ace6e 100644 --- a/debian/salsa-ci.yml +++ b/debian/salsa-ci.yml @@ -3,10 +3,13 @@ stages: variables: DEBIAN_FRONTEND: "noninteractive" + # At https://salsa.debian.org/salsa-ci-team/pipeline/container_registry one can see which images are available + SALSA_CI_IMAGES: registry.salsa.debian.org/salsa-ci-team/pipeline + BASE_CI_IMAGES: ${SALSA_CI_IMAGES}/base build: stage: build - image: debian:sid + image: $BASE_CI_IMAGES:unstable retry: max: 2 when: always