From 2092ff3c7e7fbe2a3f9378ca4b68d2e44c06411e Mon Sep 17 00:00:00 2001 From: Sergey Bogatyrets Date: Wed, 9 Nov 2022 01:36:58 +0300 Subject: [PATCH] Remove build for armv6 separate image --- .github/workflows/master.yml | 13 +------------ .github/workflows/release.yml | 11 ----------- 2 files changed, 1 insertion(+), 23 deletions(-) diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml index f40eb93..24ea7cf 100644 --- a/.github/workflows/master.yml +++ b/.github/workflows/master.yml @@ -41,19 +41,8 @@ jobs: name: Run Buildx for amd64, armv7, arm64 architectures run: | docker buildx build \ - --platform linux/amd64,linux/arm/v7,linux/arm64 \ + --platform linux/arm,linux/amd64,linux/arm/v7,linux/arm64 \ --output "type=image,push=false" \ --push \ --tag "$DOCKERHUB_REPOSITORY:latest" \ . - # Legacy build for armv6 - - - name: Run Buildx for armv6 architecture - run: | - docker buildx build \ - --platform linux/arm/v6 \ - --output "type=image,push=false" \ - --push \ - --tag "$DOCKERHUB_REPOSITORY:latest" \ - --file Dockerfile.armv6 \ - . diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0eaeeed..cc2d2ee 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -36,14 +36,3 @@ jobs: --push \ --tag "$DOCKERHUB_REPOSITORY:$RELEASE_VERSION" \ . - # Legacy build for armv6 - - - name: Run Buildx for armv6 architecture - run: | - docker buildx build \ - --platform linux/arm/v6 \ - --output "type=image,push=false" \ - --push \ - --tag "$DOCKERHUB_REPOSITORY:$RELEASE_VERSION" \ - --file Dockerfile.armv6 - .