From 827bbdf9b94342b4a3af7c0d087b7702749d9364 Mon Sep 17 00:00:00 2001 From: Dmitry Smirnov Date: Mon, 23 Dec 2024 20:40:44 +0200 Subject: [PATCH] disable multiplatform test build --- .github/workflows/build-and-test.yml | 3 +-- Makefile | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 1edccd1a..a3b31c36 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -31,8 +31,7 @@ jobs: uses: docker/setup-buildx-action@v3 - name: Run Development Pipeline - # run: make dev-pipeline - run: MULTIPLATFORM=true make dev-pipeline + run: make dev-pipeline working-directory: . env: AZURE_CREDS: ${{ secrets.AZURE_CREDS }} diff --git a/Makefile b/Makefile index a5527aac..3ca62eaf 100644 --- a/Makefile +++ b/Makefile @@ -14,7 +14,7 @@ build: @echo "Building Docker image..." @if [ "$(MULTIPLATFORM)" = "true" ]; then \ echo "Multiple platforms: [linux/amd64, linux/arm64]..."; \ - docker buildx build --platform linux/amd64,linux/arm64 -t $(DOCKER_IMAGE) .; \ + docker buildx build --platform linux/amd64,linux/arm64 -t $(DOCKER_IMAGE) --load .; \ else \ echo "Only local platform..."; \ docker build -t $(DOCKER_IMAGE) .; \