diff --git a/ci/Jenkinsfile b/ci/Jenkinsfile index 8b9153c1d5ceb53af95da3183a15c4e28af39ddb..38d45b50da2d7c8fd781f1f1280099a88997ae93 100644 --- a/ci/Jenkinsfile +++ b/ci/Jenkinsfile @@ -73,6 +73,10 @@ pipeline { env.CI_APT_SOURCES_FILE = '' } + if (!env.CI_EXTRA_APT_SOURCES) { + env.CI_EXTRA_APT_SOURCES = '' + } + checkout changelog: true, poll: true, scm: [ $class: 'GitSCM', branches: [[name: "origin/${env.CI_PRESSURE_VESSEL_GIT_BRANCH}"]], @@ -94,14 +98,26 @@ pipeline { ''' } - sh """ - sed -e 's!@BASE_IMAGE@!${env.CI_DOCKER_REGISTRY}/${env.CI_DOCKER_IMAGE}!g' < src/ci/Dockerfile.in > src/ci/Dockerfile - if [ -n "${env.CI_APT_SOURCES_FILE}" ]; then - cp "${env.CI_APT_SOURCES_FILE}" src/ci/sources.list + sh ''' + set -eu + + sed -e 's!@BASE_IMAGE@!'"${CI_DOCKER_REGISTRY}/${CI_DOCKER_IMAGE}"'!g' < src/ci/Dockerfile.in > src/ci/Dockerfile + + if [ -n "${CI_APT_SOURCES_FILE}" ]; then + cp "${CI_APT_SOURCES_FILE}" src/ci/sources.list else touch src/ci/sources.list fi - """ + + echo "${CI_EXTRA_APT_SOURCES}" | while read -r first rest; do + if [ "x$first" = xboth ]; then + echo "deb $rest" >> src/ci/sources.list + echo "deb-src $rest" >> src/ci/sources.list + else + echo "$first $rest" >> src/ci/sources.list + fi + done + ''' script { docker.withRegistry("https://${env.CI_DOCKER_REGISTRY}", dockerRegistryCred) { diff --git a/debian/gitlab-ci.yml b/debian/gitlab-ci.yml index 73e7244596ec04f3561fc79e40cb58bcadc7cbb6..5e29591268dc55ba77de561c9e977175d2359549 100644 --- a/debian/gitlab-ci.yml +++ b/debian/gitlab-ci.yml @@ -58,6 +58,18 @@ build:scout: if [ -n "${SCOUT_APT_SOURCES_FILE}" ]; then cp "${SCOUT_APT_SOURCES_FILE}" /etc/apt/sources.list + + if [ -n "${CI_EXTRA_APT_SOURCES-}" ]; then + echo "${CI_EXTRA_APT_SOURCES}" | while read -r first rest; do + if [ "x$first" = xboth ]; then + echo "deb $rest" >> /etc/apt/sources.list + echo "deb-src $rest" >> /etc/apt/sources.list + else + echo "$first $rest" >> /etc/apt/sources.list + fi + done + fi + apt-get -y update fi