Skip to content
Snippets Groups Projects
Commit bc44e8e3 authored by Alexander Fedorov's avatar Alexander Fedorov Committed by Robert Goldman
Browse files

Fix to override the IMAGE in the standard pipeline.

The Allegro 11 Express docker images are not named in the standard
way.

image is a job keyword and cannot be set in the matrix.

Use an intermediate variable (IMAGE) instead.
parent 6e2e85e0
No related branches found
No related tags found
No related merge requests found
......@@ -57,9 +57,10 @@ Build docs:
.Regression test template:
stage: regression
image: containers.common-lisp.net/cl-docker-images/$l:$IMAGE_TAG
image: $IMAGE
variables:
IMAGE_TAG: latest
IMAGE: containers.common-lisp.net/cl-docker-images/$l:$IMAGE_TAG
script:
- export l=$l$variant
- make
......@@ -88,9 +89,9 @@ Regression test:
- l: abcl
IMAGE_TAG: 1.7.1-jdk8
- l: allegro
image: rpgoldman/allegro11express
IMAGE: rpgoldman/allegro11express
- l: allegro
image: rpgoldman/allegro11express
IMAGE: rpgoldman/allegro11express
variant: modern
###############################################################################
......@@ -99,9 +100,10 @@ Regression test:
.Upgrade test template:
stage: upgrade
image: containers.common-lisp.net/cl-docker-images/$l:$IMAGE_TAG
image: $IMAGE
variables:
IMAGE_TAG: latest
IMAGE: containers.common-lisp.net/cl-docker-images/$l:$IMAGE_TAG
script:
- export l=$l$variant
- make
......@@ -126,9 +128,9 @@ Upgrade test:
IMAGE_TAG: latest
variant: modern
- l: allegro
image: rpgoldman/allegro11express
IMAGE: rpgoldman/allegro11express
- l: allegro
image: rpgoldman/allegro11express
IMAGE: rpgoldman/allegro11express
variant: modern
# No more tests are known to fail. But leave commented out in case it needs to
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment