diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2021-06-08 07:15:11 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2021-06-08 07:15:11 +0200 |
commit | 75b26fe1a2b907ea2a25fd7f8ab0565cbc61d8bf (patch) | |
tree | 70756a0c12412e4a4a22a1ceb2d058098447acd2 | |
parent | 15eb0563fe4ce9a3f8406e56e8bc3162f8341803 (diff) | |
download | podman-docker-builder-75b26fe1a2b907ea2a25fd7f8ab0565cbc61d8bf.tar.gz |
multiarch: drop nocache build
-rw-r--r-- | gitlab-ci-template-multiarch.yml | 30 |
1 files changed, 3 insertions, 27 deletions
diff --git a/gitlab-ci-template-multiarch.yml b/gitlab-ci-template-multiarch.yml index b6d877e..1d082af 100644 --- a/gitlab-ci-template-multiarch.yml +++ b/gitlab-ci-template-multiarch.yml @@ -47,46 +47,22 @@ stages: . - podman push $CI_REGISTRY_IMAGE:${TAGNAME}-${ARCH} -build-default-x86_64: +build-x86_64: stage: build variables: ARCH: x86_64 - rules: - - if: '$CI_PIPELINE_SOURCE != "schedule"' - script: - - *tag-name - - *build-default - -build-nocache-x86_64: - stage: build - variables: - ARCH: x86_64 - rules: - - if: '$CI_PIPELINE_SOURCE == "schedule"' script: - *tag-name - *build-nocache -build-default-aarch64: - stage: build - tags: - - aarch64 - variables: - ARCH: aarch64 - rules: - - if: '$CI_PIPELINE_SOURCE != "schedule" && $BUILD_AARCH64 == "yes"' - script: - - *tag-name - - *build-default - -build-nocache-aarch64: +build-aarch64: stage: build tags: - aarch64 variables: ARCH: aarch64 rules: - - if: '$CI_PIPELINE_SOURCE == "schedule" && $BUILD_AARCH64 == "yes"' + - if: '$BUILD_AARCH64 == "yes"' script: - *tag-name - *build-nocache |