Skip to content

Commit

Permalink
disable multiplatform test build
Browse files Browse the repository at this point in the history
  • Loading branch information
fqjony committed Dec 23, 2024
1 parent b104788 commit 827bbdf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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) .; \
Expand Down

0 comments on commit 827bbdf

Please sign in to comment.