From c2cf80e08c23e833cc2dab019d9ea7abf095471c Mon Sep 17 00:00:00 2001 From: cuisongliu Date: Thu, 3 Oct 2024 15:59:17 +0800 Subject: [PATCH] ci(main): add deps for job0 Signed-off-by: cuisongliu --- .github/workflows/push.yml | 1 + Makefile | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index d2df095..737cd75 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -42,6 +42,7 @@ jobs: job1: runs-on: ubuntu-20.04 + needs: job0 steps: - name: Checkout uses: actions/checkout@master diff --git a/Makefile b/Makefile index 20651f6..402e9ae 100644 --- a/Makefile +++ b/Makefile @@ -91,7 +91,7 @@ docker-push: ## Push docker image with the manager. # - have enabled BuildKit. More info: https://docs.docker.com/develop/develop-images/build_enhancements/ # - be able to push the image to your registry (i.e. if you do not set a valid value via IMG=> then the export will fail) # To adequately provide solutions that are compatible with multiple platforms, you should consider using this option. -PLATFORMS ?= linux/arm64,linux/amd64,linux/s390x,linux/ppc64le +PLATFORMS ?= linux/arm64,linux/amd64 .PHONY: docker-buildx docker-buildx: ## Build and push docker image for the manager for cross-platform support # copy existing Dockerfile and insert --platform=${BUILDPLATFORM} into Dockerfile.cross, and preserve the original Dockerfile