aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Hoffmann <kraxel@redhat.com>2020-11-27 11:55:49 +0100
committerGerd Hoffmann <kraxel@redhat.com>2020-12-16 14:04:20 +0100
commitf75882e8ab252d0091635d7bdf10bc1e81b71e28 (patch)
treedf509f5aeb444c3e8667bea708771ecb020206a4
parent9002860cd9ae0cdae80cbac2c2624a4b167225d5 (diff)
downloadpodman-docker-builder-f75882e8ab252d0091635d7bdf10bc1e81b71e28.tar.gz
add x86_64 build
-rw-r--r--.gitlab-ci.yml11
1 files changed, 10 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 4dfc1d1..37c206c 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -3,7 +3,7 @@ image: docker.io/centos:8
stages:
- build
-Build:
+aarch64:
stage: build
tags:
- aarch64
@@ -13,3 +13,12 @@ Build:
- docker login -u gitlab-ci-token -p $CI_JOB_TOKEN $CI_REGISTRY
- docker build --tag $CI_REGISTRY_IMAGE:aarch64 .
- docker push $CI_REGISTRY_IMAGE:aarch64
+
+x86_64:
+ stage: build
+ script:
+ - ./configure-mirror
+ - ./configure-podman
+ - docker login -u gitlab-ci-token -p $CI_JOB_TOKEN $CI_REGISTRY
+ - docker build --tag $CI_REGISTRY_IMAGE:x86_64 .
+ - docker push $CI_REGISTRY_IMAGE:x86_64