ci: skip s390x for dragonball.

Currently, Dragonball only supports x86_64 and aarch64 platforms.

Fixes: #4381

Signed-off-by: wllenyj <wllenyj@linux.alibaba.com>
This commit is contained in:
wllenyj 2022-10-11 16:50:38 +08:00
parent 7aacba0abc
commit 6a64fb0eb3

View File

@ -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)