diff options
author | Alex Crichton <alex@alexcrichton.com> | 2015-07-31 16:58:20 -0700 |
---|---|---|
committer | Alex Crichton <alex@alexcrichton.com> | 2015-07-31 16:58:20 -0700 |
commit | 2cf033e136e4408458add46fcad08148704db8b8 (patch) | |
tree | 2dd3c47b3dc96d838d763bde6d4356bdd5aa8800 /appveyor.yml | |
parent | 3aaa803f2012fee5083c063e38578427e0208193 (diff) | |
download | ssh2-rs-2cf033e136e4408458add46fcad08148704db8b8.zip |
Add MSYS to PATH on appveyor
Diffstat (limited to 'appveyor.yml')
-rw-r--r-- | appveyor.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/appveyor.yml b/appveyor.yml index b3d0038..1317ef6 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -3,11 +3,12 @@ environment: - TARGET: x86_64-pc-windows-msvc - TARGET: i686-pc-windows-msvc - TARGET: i686-pc-windows-gnu + MINGW: 1 install: - ps: Start-FileDownload "https://static.rust-lang.org/dist/rust-nightly-${env:TARGET}.exe" - rust-nightly-%TARGET%.exe /VERYSILENT /NORESTART /DIR="C:\Program Files (x86)\Rust" - SET PATH=%PATH%;C:\Program Files (x86)\Rust\bin - - SET PATH=%PATH%;C:\MinGW\bin + - if defined MINGW SET PATH=%PATH%;C:\MinGW\bin;C:\msys\1.0\bin - rustc -V - cargo -V - git submodule update --init |