From 2f27dc94640e3134522268b1c96d0b74fa40ad0e Mon Sep 17 00:00:00 2001 From: moparisthebest Date: Wed, 24 Mar 2021 22:39:54 -0400 Subject: [PATCH] Exclude more architectures --- .ci/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/build.sh b/.ci/build.sh index 53190fa..26f2b6d 100755 --- a/.ci/build.sh +++ b/.ci/build.sh @@ -10,7 +10,7 @@ SUFFIX="" echo "$TARGET" | grep -E '^x86_64-pc-windows-gnu$' >/dev/null && SUFFIX=".exe" # ring fails to compile here -echo "$TARGET" | grep -E '^mips64el-unknown-linux-gnuabi64$' >/dev/null && exit 0 +echo "$TARGET" | grep -E '^(s390x|powerpc|mips|riscv64gc|.*solaris$)' >/dev/null && echo "$TARGET not supported in rustls" && exit 0 # build binary cross build --target $TARGET --release