Skip to content
This repository has been archived by the owner on Oct 4, 2019. It is now read-only.

downgrade rustup to nonbroken version for appveyor #445

Merged
merged 2 commits into from
Dec 28, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@ install:
- ps: $env:VERSION = "$(janus.exe version -format='TAG_OR_NIGHTLY')"

# Install Rust.
- appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe
# Downgrade to use older, not-currently-broken version.
- appveyor DownloadFile https://static.rust-lang.org/rustup/archive/1.7.0/i686-pc-windows-gnu/rustup-init.exe -FileName rustup-init.exe
# Currently broken version.
# - appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe
- rustup-init -yv --default-toolchain stable --default-host x86_64-pc-windows-gnu
- set PATH=%PATH%;%USERPROFILE%\.cargo\bin
- rustup update
Expand Down