osmith has submitted this change. ( https://gerrit.osmocom.org/c/osmo-ci/+/40659?usp=email )
Change subject: jobs/registry…: fix syntax error ......................................................................
jobs/registry…: fix syntax error
Use $REGISTRY instead of ${REGISTRY}, so jenkins-job-builder 6.3.0 doesn't interpret it as JJB variable. It needs to be interpreted as shell variable here. This probably worked with older JJB versions.
/home/user/code/osmo-dev/src/osmo-ci/jobs/registry-update-base-images.yml:27:11: While formatting string 'REGISTRY="registry.osmocom.org"\nIMAGES="\n debian/eol:buster\n debian:bullseye\n ...': Missing parameter: 'REGISTRY' REGISTRY="registry.osmocom.org" ^
Change-Id: I54b11d0dd7847bd208c4e4270be3151479dac983 --- M jobs/registry-update-base-images.yml 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: Jenkins Builder: Verified pespin: Looks good to me, approved
diff --git a/jobs/registry-update-base-images.yml b/jobs/registry-update-base-images.yml index 1b5ad97..c9934cb 100644 --- a/jobs/registry-update-base-images.yml +++ b/jobs/registry-update-base-images.yml @@ -35,7 +35,7 @@ " for i in $IMAGES; do src=$i - dst=${REGISTRY}/$i + dst=$REGISTRY/$i echo echo ======= $src docker pull $src