Skip to content

Commit

Permalink
Move appveyor off the system drive
Browse files Browse the repository at this point in the history
  • Loading branch information
mvines committed Sep 8, 2019
1 parent 898dabb commit f6e69cc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ cache:
- '%USERPROFILE%\.cargo'
- '%APPVEYOR_BUILD_FOLDER%\target'

clone_folder: d:\projects\solana

build_script:
- bash ci/publish-tarball.sh

Expand Down
3 changes: 2 additions & 1 deletion ci/publish-tarball.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f6e69cc

Please sign in to comment.