From 35c91bea50183cbcaeea562a0df03cb6235f3b79 Mon Sep 17 00:00:00 2001 From: jguer Date: Fri, 5 Aug 2022 23:13:46 +0200 Subject: [PATCH] remove arm v6 support --- .github/workflows/builder-image.yml | 2 +- .github/workflows/multiarch-build.yml | 14 -------------- 2 files changed, 1 insertion(+), 15 deletions(-) diff --git a/.github/workflows/builder-image.yml b/.github/workflows/builder-image.yml index 57f16e51..034f0788 100644 --- a/.github/workflows/builder-image.yml +++ b/.github/workflows/builder-image.yml @@ -29,7 +29,7 @@ jobs: DOCKER_BUILDKIT: 0 COMPOSE_DOCKER_CLI_BUILD: 0 with: - platforms: linux/amd64, linux/arm/v6,linux/arm/v7,linux/arm64 + platforms: linux/amd64,linux/arm/v7,linux/arm64 file: ci.Dockerfile push: true tags: jguer/yay-builder:latest diff --git a/.github/workflows/multiarch-build.yml b/.github/workflows/multiarch-build.yml index b704f5e4..768c51e3 100644 --- a/.github/workflows/multiarch-build.yml +++ b/.github/workflows/multiarch-build.yml @@ -11,7 +11,6 @@ jobs: arch: [ "linux/amd64 x86_64", - "linux/arm/v6 armv6h", "linux/arm/v7 armv7h", "linux/arm64 aarch64", ] @@ -73,9 +72,6 @@ jobs: - uses: actions/download-artifact@v2 with: name: yay_armv7h - - uses: actions/download-artifact@v2 - with: - name: yay_armv6h - uses: actions/download-artifact@v2 with: name: yay_aarch64 @@ -109,16 +105,6 @@ jobs: asset_path: ./yay_${{ steps.tags.outputs.version }}_armv7h.tar.gz asset_name: yay_${{ steps.tags.outputs.version }}_armv7h.tar.gz asset_content_type: application/tar+gzip - - name: Upload armv6h asset - id: upload-release-asset-armv6h - uses: actions/upload-release-asset@v1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - upload_url: ${{ steps.create_release.outputs.upload_url }} - asset_path: ./yay_${{ steps.tags.outputs.version }}_armv6h.tar.gz - asset_name: yay_${{ steps.tags.outputs.version }}_armv6h.tar.gz - asset_content_type: application/tar+gzip - name: Upload aarch64 asset id: upload-release-asset-aarch64 uses: actions/upload-release-asset@v1