summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2021-03-02 13:59:34 +0000
committerbors <bors@rust-lang.org>2021-03-02 13:59:34 +0000
commit5786455a7900ad1a502dcf848e1e3ec77d669e95 (patch)
tree3f8871b9c2584f65e4d0ae4241beae0c2f8fdbc3
parentfd68b7c5c37155f8b85284eef4fe16e0b43bd019 (diff)
parentd6c42cfda482c02c547d9093df8582d3ef0f6258 (diff)
downloadrust-libc-5786455a7900ad1a502dcf848e1e3ec77d669e95.tar.gz
Auto merge of #2096 - JohnTitor:fix-semver-check, r=JohnTitor
Revert the solaris target renaming for semver check The semver check uses an old nightly and it doesn't have the renamed target yet, I completely forgot it. r? `@ghost`
-rw-r--r--ci/semver.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/ci/semver.sh b/ci/semver.sh
index a6027f2e83..4fe13a974d 100644
--- a/ci/semver.sh
+++ b/ci/semver.sh
@@ -18,6 +18,8 @@ rustup component add rustc-dev llvm-tools-preview
# Should update the nightly version in bors CI config if we touch this.
cargo install --locked --git https://github.com/rust-lang/rust-semverver --rev 71c340ff867d2f79613cfe02c6714f1d2ef00bc4
+# FIXME: Replace `x86_64-sun-solaris` with `x86_64-pc-solaris`
+# when we update the nightly date for semverver to nightly-2021-03-02 or later.
TARGETS=
case "${OS}" in
*linux*)
@@ -39,7 +41,7 @@ x86_64-unknown-freebsd \
x86_64-unknown-linux-gnu \
x86_64-unknown-linux-musl \
x86_64-unknown-netbsd \
-x86_64-pc-solaris \
+x86_64-sun-solaris \
x86_64-fuchsia \
x86_64-pc-windows-gnu \
x86_64-unknown-linux-gnux32 \