From 024ca9a65649b2c57e5d3ac9c13d83f9d898ff4f Mon Sep 17 00:00:00 2001 From: Nick Fitzgerald Date: Wed, 24 Oct 2018 14:50:39 +0200 Subject: [PATCH] Pin appveyor to an older nightly until we figure out the cargo/rustc bug --- .appveyor.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index b14e7e60d..56356dd5d 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -5,10 +5,10 @@ environment: install: - ps: Install-Product node 10 - appveyor-retry appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe - - rustup-init.exe -y --default-host x86_64-pc-windows-msvc --default-toolchain nightly + - rustup-init.exe -y --default-host x86_64-pc-windows-msvc --default-toolchain nightly-2018-10-01 - set PATH=%PATH%;C:\Users\appveyor\.cargo\bin - set RUST_BACKTRACE=1 - - rustup target add wasm32-unknown-unknown --toolchain nightly + - rustup target add wasm32-unknown-unknown --toolchain nightly-2018-10-01 - rustc -V - cargo -V