diff options
author | Aleksey Kladov <[email protected]> | 2018-01-28 00:13:44 +0000 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2018-01-28 00:13:44 +0000 |
commit | 6a57d2ae4af8c24a6e809eb8cdf2c4ee3d3b2452 (patch) | |
tree | cc06d5b82213a68516105eeda5ef43eab2b6df1c | |
parent | e6e61251abb68b3e6a47fd3708f4dea6059a9ec3 (diff) |
CI: add windows testing
-rw-r--r-- | appveyor.yml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 000000000..90fd49da8 --- /dev/null +++ b/appveyor.yml | |||
@@ -0,0 +1,13 @@ | |||
1 | os: Visual Studio 2015 | ||
2 | |||
3 | install: | ||
4 | - appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe | ||
5 | - rustup-init -yv --default-toolchain stable --default-host x86_64-pc-windows-msvc | ||
6 | - set PATH=%PATH%;%USERPROFILE%\.cargo\bin | ||
7 | - rustc -vV | ||
8 | - cargo -vV | ||
9 | |||
10 | build: false | ||
11 | |||
12 | test_scipt: | ||
13 | - cargo test | ||