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
No known key found for this signature in database
GPG Key ID: 33F4FDEC4E0E88BD
2 changed files with 4 additions and 1 deletions

View File

@ -9,6 +9,8 @@ cache:
- '%USERPROFILE%\.cargo'
- '%APPVEYOR_BUILD_FOLDER%\target'
clone_folder: d:\projects\solana
build_script:
- bash ci/publish-tarball.sh

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