diff --git a/.github/workflows/static-checks.yaml b/.github/workflows/static-checks.yaml index e40ecbe5b931..39e76df6865f 100644 --- a/.github/workflows/static-checks.yaml +++ b/.github/workflows/static-checks.yaml @@ -78,6 +78,7 @@ jobs: - "ubuntu-20.04" - "arm-no-k8s" - "s390x" + - "ppc64le" runs-on: ${{ matrix.instance }} steps: - name: Adjust a permission for repo diff --git a/src/dragonball/Makefile b/src/dragonball/Makefile index f0321011d218..ab74116db156 100644 --- a/src/dragonball/Makefile +++ b/src/dragonball/Makefile @@ -4,9 +4,9 @@ include ../../utils.mk -ifeq ($(ARCH), s390x) +ifeq ($(ARCH), $(filter $(ARCH), s390x ppc64le)) default build check test clippy vendor: - @echo "s390x not support currently" + @echo "$(ARCH) is not support currently" exit 0 else diff --git a/src/tools/agent-ctl/Makefile b/src/tools/agent-ctl/Makefile index fe56fa098241..a49f88e6b01b 100644 --- a/src/tools/agent-ctl/Makefile +++ b/src/tools/agent-ctl/Makefile @@ -7,7 +7,7 @@ include ../../../utils.mk ifeq ($(ARCH), ppc64le) override ARCH = powerpc64le - endif +endif .DEFAULT_GOAL := default default: build diff --git a/src/tools/kata-ctl/Makefile b/src/tools/kata-ctl/Makefile index 546f0783adfd..cde3cf91c056 100644 --- a/src/tools/kata-ctl/Makefile +++ b/src/tools/kata-ctl/Makefile @@ -5,6 +5,10 @@ include ../../../utils.mk +ifeq ($(ARCH), ppc64le) + override ARCH = powerpc64le +endif + PROJECT_NAME = Kata Containers PROJECT_URL = https://github.com/kata-containers PROJECT_COMPONENT = kata-ctl diff --git a/src/tools/runk/Makefile b/src/tools/runk/Makefile index cd9a24a8b178..18695567971a 100644 --- a/src/tools/runk/Makefile +++ b/src/tools/runk/Makefile @@ -10,7 +10,7 @@ include ../../../utils.mk ifeq ($(ARCH), ppc64le) override ARCH = powerpc64le - endif +endif TARGET = runk TARGET_PATH = target/$(TRIPLE)/$(BUILD_TYPE)/$(TARGET) diff --git a/src/tools/trace-forwarder/Makefile b/src/tools/trace-forwarder/Makefile index 3bdd5d53a52c..5d9f718561c4 100644 --- a/src/tools/trace-forwarder/Makefile +++ b/src/tools/trace-forwarder/Makefile @@ -7,7 +7,7 @@ include ../../../utils.mk ifeq ($(ARCH), ppc64le) override ARCH = powerpc64le - endif +endif .DEFAULT_GOAL := default default: build