Move appveyor off the system drive

This commit is contained in:
Michael Vines
2019-09-08 09:47:20 -07:00
parent df205f8752
commit 11cec8f24e
2 changed files with 4 additions and 1 deletions

View File

@@ -9,8 +9,9 @@ if [[ -n $APPVEYOR ]]; then
source ci/rust-version.sh
appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe
export USERPROFILE="D:\\"
./rustup-init -yv --default-toolchain $rust_stable --default-host x86_64-pc-windows-msvc
export PATH="$PATH:$USERPROFILE/.cargo/bin"
export PATH="$PATH:/d/.cargo/bin"
rustc -vV
cargo -vV
fi