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:04] – [Create buildx image to use] 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 24: | Line 24: | ||
} | } | ||
</ | </ | ||
- | + | ===== Create buildx | |
- | ===== Create buildx image to use ===== | + | |
<file bash Dockerfile> | <file bash Dockerfile> | ||
ARG BUILDX_VERSION=0.4.2 | ARG BUILDX_VERSION=0.4.2 | ||
Line 46: | Line 45: | ||
COPY --from=fetcher / | COPY --from=fetcher / | ||
</ | </ | ||
- | ===== Configure gitlab-runner ===== | ||
- | ===== Utilize own buildx image and switch | + | Credits |
+ | ==== Build & push image ==== | ||
+ | <code bash> | ||
+ | $ docker build --pull -t registry/ | ||
+ | $ docker push registry/ | ||
+ | </ | ||
+ | ===== Switch to buildx in .gitlab-ci.yml ===== | ||
+ | Define CI_PLATFORMS variable in Settings / CI/CD: | ||
+ | |||
+ | CI_PLATFORMS = linux/ | ||
+ | |||
+ | <file bash .gitlab-ci.yml> | ||
+ | image: registry/ | ||
+ | |||
+ | services: | ||
+ | - docker:dind | ||
+ | |||
+ | build: | ||
+ | stage: build | ||
+ | script: | ||
+ | - docker login -u $CI_USER -p $CI_TOKEN $CI_REGISTRY | ||
+ | - docker buildx create --use | ||
+ | - docker buildx build --platform $CI_PLATFORMS --push --pull -t $CI_REGISTRY_IMAGE . | ||
+ | </ | ||
+ | {{tag>kb git}} |
gitlab-ci-multiplatform.1610089482.txt.gz · Last modified: 2021/01/08 08:04 by baumi