summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2019-05-25 12:19:21 +0000
committerbors <bors@rust-lang.org>2019-05-25 12:19:21 +0000
commitc6306c1327437d83b90a54a9c151e5a75dcb87d0 (patch)
tree0fd7888e798d89fbd5d6bbe3bbe984ecb1cb80f7
parentc4b609a77a0cf7ced23b47956fb6287d33568223 (diff)
parent06561d98f489d924db5260a9ee549b6f51881b95 (diff)
downloadrust-libc-c6306c1327437d83b90a54a9c151e5a75dcb87d0.tar.gz
Auto merge of #1367 - gnzlbg:disable_sparc, r=gnzlbg
Temporarily disable some solaris targets
-rw-r--r--ci/build.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/ci/build.sh b/ci/build.sh
index eb07c182ea..77da36c933 100644
--- a/ci/build.sh
+++ b/ci/build.sh
@@ -23,6 +23,11 @@ test_target() {
# See https://github.com/rust-lang/rust/issues/45417
opt="--release"
fi
+ # FIXME: https://github.com/rust-lang/rust/issues/61174
+ if [ "${TARGET}" = "sparcv9-sun-solaris" ] ||
+ [ "${TARGET}" = "x86_64-sun-solaris" ]; then
+ return 0
+ fi
# If there is a std component, fetch it:
if [ "${NO_STD}" != "1" ]; then