diff options
author | Alex Crichton <alex@alexcrichton.com> | 2015-07-31 16:10:26 -0700 |
---|---|---|
committer | Alex Crichton <alex@alexcrichton.com> | 2015-07-31 16:10:26 -0700 |
commit | 608db6130985d6fc54ee3e2b1b412eaa8cf9a91b (patch) | |
tree | 268ea5e37ebfa0d27ca6beb774c0c338f4efddb2 /appveyor.yml | |
parent | 9cf802cbee184e06206ba30ea3daef501de13836 (diff) | |
download | ssh2-rs-608db6130985d6fc54ee3e2b1b412eaa8cf9a91b.zip |
Test MinGW now that we're using cmake
Diffstat (limited to 'appveyor.yml')
-rw-r--r-- | appveyor.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/appveyor.yml b/appveyor.yml index 9644648..b3d0038 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -2,10 +2,12 @@ environment: matrix: - TARGET: x86_64-pc-windows-msvc - TARGET: i686-pc-windows-msvc + - TARGET: i686-pc-windows-gnu 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 - rustc -V - cargo -V - git submodule update --init |