This commit is contained in:
Malte Jürgens 2022-05-09 20:13:55 +02:00
parent 67eb3fc9bb
commit af7d9ea1cc
Signed by: maltejur
GPG key ID: D29FBD5F93C0CFC3

View file

@ -7,11 +7,8 @@ stages:
Build Docker Images: Build Docker Images:
stage: build-images stage: build-images
when: manual when: manual
image: docker image: ubuntu
services: services:
- name: gcc
alias: make
command: ["make"]
- docker:dind - docker:dind
parallel: parallel:
matrix: matrix:
@ -25,6 +22,9 @@ Build Docker Images:
- fedora35 - fedora35
- macos-x86_64 - macos-x86_64
- macos-aarch64 - macos-aarch64
before_script:
- curl -fsSL https://get.docker.com -o get-docker.sh
- sudo sh get-docker.sh
script: script:
- docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY - docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
- make docker-$DISTRO - make docker-$DISTRO