From 307b8b61117492fa7a6b888cee724664ae001133 Mon Sep 17 00:00:00 2001 From: John Kennedy Date: Wed, 3 Feb 2021 14:57:24 -0800 Subject: [PATCH] removing qemu and arm64 --- .github/workflows/ci.yaml | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 87b4a6b11..b3b551975 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -64,9 +64,6 @@ jobs: - name: Set up Docker Buildx id: buildx uses: docker/setup-buildx-action@v1 - - name: Set up QEMU - id: qemu - uses: docker/setup-qemu-action@v1 - name: Build and Push Image uses: docker/build-push-action@v2.2.2 with: @@ -74,7 +71,7 @@ jobs: file: Dockerfile.prod.frontend tags: ${{ steps.docker_meta.outputs.tags }} labels: ${{ steps.docker_meta.outputs.labels }} - platforms: linux/amd64,linux/arm64 + platforms: linux/amd64 push: true build_web: @@ -98,9 +95,6 @@ jobs: - name: Set up Docker Buildx id: buildx uses: docker/setup-buildx-action@v1 - - name: Set up QEMU - id: qemu - uses: docker/setup-qemu-action@v1 - name: Build and Push Image uses: docker/build-push-action@v2.2.2 with: @@ -108,7 +102,7 @@ jobs: file: Dockerfile.prod.backend.web tags: ${{ steps.docker_meta.outputs.tags }} labels: ${{ steps.docker_meta.outputs.labels }} - platforms: linux/amd64,linux/arm64 + platforms: linux/amd64 push: true build_api: @@ -132,9 +126,6 @@ jobs: - name: Set up Docker Buildx id: buildx uses: docker/setup-buildx-action@v1 - - name: Set up QEMU - id: qemu - uses: docker/setup-qemu-action@v1 - name: Build and Push Image uses: docker/build-push-action@v2.2.2 with: @@ -142,5 +133,5 @@ jobs: file: Dockerfile.prod.backend.api tags: ${{ steps.docker_meta.outputs.tags }} labels: ${{ steps.docker_meta.outputs.labels }} - platforms: linux/amd64,linux/arm64 + platforms: linux/amd64 push: true