dragonball: skip running static-checks for ppc64le

Since dragonball is not currently supported on ppc64le, skip running the targets for static-checks.

Signed-off-by: Amulyam24 <amulmek1@in.ibm.com>
This commit is contained in:
Amulyam24 2024-01-09 12:46:00 +05:30 committed by Hyounggyu Choi
parent 14934c7b0d
commit 486b8a0538

View File

@ -6,9 +6,9 @@ include ../../utils.mk
PROJECT_DIRS := $(shell find . -name Cargo.toml -printf '%h\n' | sort -u)
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