Skip to content

Commit 1ea9cae

Browse files
committed
Pin to nightly-2016-03-11 because rust-lang/rust#32247
1 parent 111538b commit 1ea9cae

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.travis.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ install:
3030
# Download nightly rust
3131
- mkdir -p ~/rust
3232
- echo -e "\033[33;1mDownloading Rust\033[0m"
33-
- curl -sL http://static.rust-lang.org/dist/rust-nightly-$TARGET.tar.gz | tar --strip-components=1 -C ~/rust -xzf -
33+
# FIXME: Pinned nightly for rust-lang/rust#32247
34+
- curl -sL http://static.rust-lang.org/dist/2016-03-11/rust-nightly-$TARGET.tar.gz | tar --strip-components=1 -C ~/rust -xzf -
3435
# For linux, install required packages
3536
- if [ "$TRAVIS_OS_NAME" == "linux" ]; then
3637
if [ "$BITS" == "32" ]; then

appveyor.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ branches:
1515
install:
1616
- ps: |
1717
# Install Rust
18-
Start-FileDownload "https://static.rust-lang.org/dist/rust-nightly-${env:TARGET}.exe" -FileName "rust-nightly.exe"
18+
# FIXME: Pinned nightly for rust-lang/rust#32247
19+
Start-FileDownload "https://static.rust-lang.org/dist/2016-03-11/rust-nightly-${env:TARGET}.exe" -FileName "rust-nightly.exe"
1920
.\rust-nightly.exe /VERYSILENT /NORESTART /DIR="C:\rust" | Out-Null
2021
$env:PATH="$env:PATH;C:\rust\bin"
2122

0 commit comments

Comments
 (0)