From 6a64fb0eb3dd298e0864aa45bc9f92fd28ef54bd Mon Sep 17 00:00:00 2001 From: wllenyj Date: Tue, 11 Oct 2022 16:50:38 +0800 Subject: [PATCH] ci: skip s390x for dragonball. Currently, Dragonball only supports x86_64 and aarch64 platforms. Fixes: #4381 Signed-off-by: wllenyj --- src/dragonball/Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/dragonball/Makefile b/src/dragonball/Makefile index f98367f92c..90ab19fc07 100644 --- a/src/dragonball/Makefile +++ b/src/dragonball/Makefile @@ -2,6 +2,14 @@ # Copyright (c) 2019-2022 Ant Group. All rights reserved. # SPDX-License-Identifier: Apache-2.0 +include ../../utils.mk + +ifeq ($(ARCH), s390x) +default build check test clippy: + @echo "s390x not support currently" + exit 0 +else + default: build build: @@ -27,3 +35,5 @@ clean: test: @echo "INFO: skip testing dragonball" + +endif # ifeq ($(ARCH), s390x)