blob: a2b6b5237301c6b24e7838a4556faa4396cd8a68 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
image: docker.io/centos:8
stages:
- build
- manifest
variables:
TAG: devel
aarch64:
stage: build
tags:
- aarch64
script:
- ./configure-mirror
- ./configure-podman
- podman login -u gitlab-ci-token -p $CI_JOB_TOKEN $CI_REGISTRY
- podman build --tag $CI_REGISTRY_IMAGE:${TAG}-aarch64 .
- podman push $CI_REGISTRY_IMAGE:${TAG}-aarch64
x86_64:
stage: build
script:
- ./configure-mirror
- ./configure-podman
- podman login -u gitlab-ci-token -p $CI_JOB_TOKEN $CI_REGISTRY
- podman build --tag $CI_REGISTRY_IMAGE:${TAG}-x86_64 .
- podman push $CI_REGISTRY_IMAGE:${TAG}-x86_64
manifest:
stage: manifest
script:
- ./configure-mirror
- ./configure-podman
- buildah login -u gitlab-ci-token -p $CI_JOB_TOKEN $CI_REGISTRY
- buildah manifest create ${TAG}
- buildah manifest add ${TAG} docker://$CI_REGISTRY_IMAGE:${TAG}-aarch64
- buildah manifest add ${TAG} docker://$CI_REGISTRY_IMAGE:${TAG}-x86_64
- buildah manifest push ${TAG} docker://$CI_REGISTRY_IMAGE:${TAG}
|