gitlab-ci-multiplatform
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
gitlab-ci-multiplatform [2021/01/08 08:08] – baumi | gitlab-ci-multiplatform [2021/01/09 10:07] (current) – [Enable Emulators] baumi | ||
---|---|---|---|
Line 1: | Line 1: | ||
====== Gitlab CI MultiPlatform Build ====== | ====== Gitlab CI MultiPlatform Build ====== | ||
- | ===== Enable | + | ===== Enable |
- | < | + | < |
- | # docker run -it --rm --privileged tonistiigi/ | + | $ docker run --rm --privileged tonistiigi/ |
{ | { | ||
" | " | ||
Line 23: | Line 23: | ||
] | ] | ||
} | } | ||
+ | </ | ||
+ | ===== Create buildx enabled docker image for builds ===== | ||
+ | <file bash Dockerfile> | ||
+ | ARG BUILDX_VERSION=0.4.2 | ||
+ | ARG DOCKER_VERSION=latest | ||
+ | |||
+ | FROM alpine AS fetcher | ||
+ | |||
+ | RUN apk add curl | ||
+ | |||
+ | ARG BUILDX_VERSION | ||
+ | RUN curl -L \ | ||
+ | --output / | ||
+ | " | ||
+ | |||
+ | RUN chmod a+x / | ||
+ | |||
+ | ARG DOCKER_VERSION | ||
+ | FROM docker: | ||
+ | |||
+ | COPY --from=fetcher / | ||
+ | </ | ||
+ | |||
+ | Credits to [[https:// | ||
+ | |||
+ | ==== Build & push image ==== | ||
+ | |||
+ | <code bash> | ||
+ | $ docker build --pull -t registry/ | ||
+ | $ docker push registry/ | ||
</ | </ | ||
===== Switch to buildx in .gitlab-ci.yml ===== | ===== Switch to buildx in .gitlab-ci.yml ===== | ||
+ | Define CI_PLATFORMS variable in Settings / CI/CD: | ||
+ | |||
+ | CI_PLATFORMS = linux/ | ||
+ | |||
<file bash .gitlab-ci.yml> | <file bash .gitlab-ci.yml> | ||
- | image: docker | + | image: |
services: | services: | ||
Line 36: | Line 70: | ||
script: | script: | ||
- docker login -u $CI_USER -p $CI_TOKEN $CI_REGISTRY | - docker login -u $CI_USER -p $CI_TOKEN $CI_REGISTRY | ||
- | - export DOCKER_CLI_EXPERIMENTAL=enabled | ||
- | - export DOCKER_BUILDKIT=1 | ||
- docker buildx create --use | - docker buildx create --use | ||
- | - docker buildx build --platform $CI_PLATFORMS --push --pull -t $CI_IMAGE | + | - docker buildx build --platform $CI_PLATFORMS --push --pull -t $CI_REGISTRY_IMAGE |
</ | </ | ||
+ | {{tag>kb git}} |
gitlab-ci-multiplatform.1610089688.txt.gz · Last modified: 2021/01/08 08:08 by baumi