From 9460a7b4db08e0551ca68fbdbb133bb20211a7a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=20Gl=C3=A4=C3=9F-St=C3=B6cker?= Date: Thu, 15 Apr 2021 12:03:53 +0200 Subject: [PATCH] only build for armv7 for the moment --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9119ca5..0cff233 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -47,7 +47,7 @@ deploy: script: - docker login -u gitlab-ci-token -p $CI_JOB_TOKEN $CI_REGISTRY - docker buildx create --use --name mybuilder - - docker buildx build --platform linux/amd64,linux/arm64,linux/arm/v7 --push -t $CI_REGISTRY_IMAGE . + - docker buildx build --platform linux/arm/v7 --push -t $CI_REGISTRY_IMAGE . only: changes: - Dockerfile @@ -89,7 +89,7 @@ weekly:deploy: script: - docker login -u gitlab-ci-token -p $CI_JOB_TOKEN $CI_REGISTRY - docker buildx create --use --name mybuilder - - docker buildx build --platform linux/amd64,linux/arm64,linux/arm/v7 --push -t $CI_REGISTRY_IMAGE . + - docker buildx build --platform linux/arm/v7 --push -t $CI_REGISTRY_IMAGE . only: - schedules - master