summaryrefslogtreecommitdiff
path: root/appveyor.yml
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2015-09-10 22:01:52 -0700
committerAlex Crichton <alex@alexcrichton.com>2015-09-10 22:09:43 -0700
commit3bf33a4113c25653a7ce22302821dcaef28a681c (patch)
treeec5a25b9e2e62e08cb2bd2d98c62446b755fe48f /appveyor.yml
parent7da9b10fc625c0af5de3f17a0d74f38b22a4c035 (diff)
downloadrust-libc-3bf33a4113c25653a7ce22302821dcaef28a681c.tar.gz
Add appveyor config
Diffstat (limited to 'appveyor.yml')
-rw-r--r--appveyor.yml18
1 files changed, 18 insertions, 0 deletions
diff --git a/appveyor.yml b/appveyor.yml
new file mode 100644
index 0000000000..fb6ccd1399
--- /dev/null
+++ b/appveyor.yml
@@ -0,0 +1,18 @@
+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
+
+build: false
+
+test_script:
+ - cargo test
+ - cargo test --manifest-path libc-test/Cargo.toml