From e6ff88aec499125b50fdf28f6cef311ffef0eb9d Mon Sep 17 00:00:00 2001 From: Anthony Ramine Date: Tue, 28 Feb 2017 15:05:59 +0100 Subject: [PATCH] Enable AppVeyor support --- appveyor.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000..3df037a --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,13 @@ +environment: + PATH: 'C:\msys64\mingw64\bin;C:\msys64\usr\bin;%PATH%;C:\Rust\bin' + +install: + - ps: Start-FileDownload "https://static.rust-lang.org/dist/rust-nightly-x86_64-pc-windows-gnu.msi" + - msiexec /passive /i "rust-nightly-x86_64-pc-windows-gnu.msi" ADDLOCAL=Rustc,Cargo,Std INSTALLDIR=C:\Rust + - rustc -V + - cargo -V + +build: false + +test_script: + - cargo test --verbose