kata-ctl: skip building kata-ctl on ppc64le

kata-ctl currently fails to build on ppc64le. Skip it for running static checks and the issues will be fixed and tracked in a seperate issue.

Signed-off-by: Amulyam24 <amulmek1@in.ibm.com>
This commit is contained in:
Amulyam24 2024-01-09 13:03:01 +05:30 committed by Hyounggyu Choi
parent 4ecd82a5df
commit 376941cf69

View File

@ -32,6 +32,12 @@ GENERATED_FILES := $(GENERATED_CODE)
.DEFAULT_GOAL := default
ifeq ($(ARCH), ppc64le)
default build check test vendor:
@echo "Building kata-ctl on $(ARCH) is currently being skipped"
exit 0
else
default: $(TARGET) build
$(TARGET): $(GENERATED_CODE)
@ -60,6 +66,8 @@ install:
check: $(GENERATED_CODE) standard_rust_check
endif
.PHONY: \
build \
check \