From f6e69ccb3e3e11a2dec88c5364f92f854f660c73 Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Sun, 8 Sep 2019 09:47:20 -0700 Subject: [PATCH] Move appveyor off the system drive --- .appveyor.yml | 2 ++ ci/publish-tarball.sh | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.appveyor.yml b/.appveyor.yml index 06e8453703..babf846e70 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -9,6 +9,8 @@ cache: - '%USERPROFILE%\.cargo' - '%APPVEYOR_BUILD_FOLDER%\target' +clone_folder: d:\projects\solana + build_script: - bash ci/publish-tarball.sh diff --git a/ci/publish-tarball.sh b/ci/publish-tarball.sh index a7e07a65ab..6031a8067e 100755 --- a/ci/publish-tarball.sh +++ b/ci/publish-tarball.sh @@ -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