ci(gitlab-ci): Statement of default image for downstream pipelines.

This commit is contained in:
Stephan Barth 2024-08-24 18:22:14 +02:00
parent 675dd364df
commit f3df449693
2 changed files with 25 additions and 1 deletions

View File

@ -20,6 +20,18 @@ stages:
- lint
- test
default:
image:
name: ${CI_REGISTRY_IMAGE}/backend/${CI_COMMIT_REF_SLUG}:${BACKEND_IMAGE_VERSION}
entrypoint: [""]
docker:
platform: x86_64
artifacts:
name: "${CI_JOB_NAME}-${CI_COMMIT_SHORT_SHA}"
expire_in: "1 day"
retry: 2
interruptible: true
container:
stage: container
@ -69,4 +81,4 @@ test:
script:
- *load-backend-image
- make -- --docker-run-backend-test FRADRIVE_SERVICE=backend CONTAINER_RUNNER=podman-compose
cache: *backend-cache
cache: *backend-cache

View File

@ -20,6 +20,18 @@ stages:
- lint
- test
default:
image:
name: ${CI_REGISTRY_IMAGE}/frontend/${CI_COMMIT_REF_SLUG}:${FRONTEND_IMAGE_VERSION}
entrypoint: [""]
docker:
platform: x86_64
artifacts:
name: "${CI_JOB_NAME}-${CI_COMMIT_SHORT_SHA}"
expire_in: "1 day"
retry: 2
interruptible: true
container:
stage: container