File tree 2 files changed +4
-2
lines changed
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,8 @@ install:
30
30
# Download nightly rust
31
31
- mkdir -p ~/rust
32
32
- 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 -
34
35
# For linux, install required packages
35
36
- if [ "$TRAVIS_OS_NAME" == "linux" ]; then
36
37
if [ "$BITS" == "32" ]; then
Original file line number Diff line number Diff line change @@ -15,7 +15,8 @@ branches:
15
15
install :
16
16
- ps : |
17
17
# 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"
19
20
.\rust-nightly.exe /VERYSILENT /NORESTART /DIR="C:\rust" | Out-Null
20
21
$env:PATH="$env:PATH;C:\rust\bin"
21
22
You can’t perform that action at this time.
0 commit comments