mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-08-18 16:08:25 +00:00
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:
parent
4ecd82a5df
commit
376941cf69
@ -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 \
|
||||
|
Loading…
Reference in New Issue
Block a user