You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by pc...@apache.org on 2024/01/18 12:02:08 UTC

(camel-k) 02/02: fix(ci): use docker buildx which should be available on mac as well

This is an automated email from the ASF dual-hosted git repository.

pcongiusti pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel-k.git

commit 679c040c16ffe8da54f16fc5612317e26c946be2
Author: Pasquale Congiusti <pa...@gmail.com>
AuthorDate: Thu Jan 18 09:35:01 2024 +0100

    fix(ci): use docker buildx which should be available on mac as well
---
 .github/actions/kamel-config-cluster-kind/action.yml | 2 +-
 script/Makefile                                      | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/actions/kamel-config-cluster-kind/action.yml b/.github/actions/kamel-config-cluster-kind/action.yml
index 4bcfcb37e..590ad4c99 100644
--- a/.github/actions/kamel-config-cluster-kind/action.yml
+++ b/.github/actions/kamel-config-cluster-kind/action.yml
@@ -23,7 +23,7 @@ runs:
   steps:
     - id: install-cluster
       name: Install Cluster
-      uses: container-tools/kind-action@v2.0.2
+      uses: container-tools/kind-action@v2.0.3
       if: ${{ env.CLUSTER_KIND_CONFIGURED != 'true' }}
       with:
         version: v0.19.0
diff --git a/script/Makefile b/script/Makefile
index e9d67ef14..3d1adbcce 100644
--- a/script/Makefile
+++ b/script/Makefile
@@ -449,7 +449,7 @@ ifneq (,$(findstring SNAPSHOT,$(DEFAULT_RUNTIME_VERSION)))
 endif
 	@echo "####### Building Camel K operator arch $(IMAGE_ARCH) container image..."
 	mkdir -p build/_maven_output
-	docker build --target $(TARGET_STAGE) --platform=linux/$(IMAGE_ARCH) -t $(DOCKER_TAG) -f build/Dockerfile .
+	docker buildx build --target $(TARGET_STAGE) --platform=linux/$(IMAGE_ARCH) -t $(DOCKER_TAG) -f build/Dockerfile .
 
 # Mainly used for internal CI purposes
 image-push: