| 1 | .container_job_template: |
| 2 | extends: .base_job_template |
| 3 | image: docker:latest |
| 4 | stage: containers |
| 5 | services: |
| 6 | - docker:dind |
| 7 | before_script: |
| 8 | - export TAG="$CI_REGISTRY_IMAGE/qemu/$NAME:$QEMU_CI_CONTAINER_TAG" |
| 9 | # Always ':latest' because we always use upstream as a common cache source |
| 10 | - export COMMON_TAG="$CI_REGISTRY/qemu-project/qemu/qemu/$NAME:latest" |
| 11 | - docker login $CI_REGISTRY -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" |
| 12 | - until docker info; do sleep 1; done |
| 13 | script: |
| 14 | - echo "TAG:$TAG" |
| 15 | - echo "COMMON_TAG:$COMMON_TAG" |
| 16 | - docker build --tag "$TAG" --cache-from "$TAG" --cache-from "$COMMON_TAG" |
| 17 | --build-arg BUILDKIT_INLINE_CACHE=1 --provenance=false |
| 18 | -f "tests/docker/dockerfiles/$NAME.docker" "." |
| 19 | - docker push "$TAG" |
| 20 | after_script: |
| 21 | - docker logout |
| 22 | rules: |
| 23 | # because we want to enable this for scheduled runs we also have to replicate the normal rules |
| 24 | - if: '$CI_PIPELINE_SOURCE == "schedule" && $CI_PROJECT_NAMESPACE == $QEMU_CI_UPSTREAM' |
| 25 | - !reference [.base_job_template, rules] |