blob: 74811ed105ecac2a87d2c86d8dd584666d4dd1e3 [file] [log] [blame]
Alex Crichton3bf33a42015-09-10 22:01:52 -07001environment:
2 matrix:
Alex Crichton87fdebd2015-09-12 22:24:01 -07003 - TARGET: x86_64-pc-windows-gnu
Alex Crichton87fdebd2015-09-12 22:24:01 -07004 MSYS2_BITS: 64
Alex Crichton87fdebd2015-09-12 22:24:01 -07005 - TARGET: i686-pc-windows-gnu
Alex Crichton87fdebd2015-09-12 22:24:01 -07006 MSYS2_BITS: 32
Alex Crichton3bf33a42015-09-10 22:01:52 -07007 - TARGET: x86_64-pc-windows-msvc
8 - TARGET: i686-pc-windows-msvc
Alex Crichton3bf33a42015-09-10 22:01:52 -07009install:
10 - ps: Start-FileDownload "https://static.rust-lang.org/dist/rust-nightly-${env:TARGET}.exe"
11 - rust-nightly-%TARGET%.exe /VERYSILENT /NORESTART /DIR="C:\Program Files (x86)\Rust"
12 - SET PATH=%PATH%;C:\Program Files (x86)\Rust\bin
Alex Crichtonab0442c2015-10-07 14:38:47 -070013 - if defined MSYS2_BITS set PATH=%PATH%;C:\msys64\mingw%MSYS2_BITS%\bin
Alex Crichton3bf33a42015-09-10 22:01:52 -070014 - rustc -V
15 - cargo -V
16
17build: false
18
19test_script:
20 - cargo test
Alex Crichtond11e9142015-09-15 23:28:52 -070021 - cargo run --manifest-path libc-test/Cargo.toml
Alex Crichton6603ca02015-09-18 16:23:25 -070022
23branches:
24 only:
Alex Crichton9cb16342015-09-21 13:37:36 -070025 - master