aboutsummaryrefslogtreecommitdiffstats
path: root/.gitlab-ci.yml
blob: 4dfc1d1f08d95206ba8a876cc13c06c0285013ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
image: docker.io/centos:8

stages:
  - build

Build:
  stage: build
  tags:
    - aarch64
  script:
    - ./configure-mirror
    - ./configure-podman
    - 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