From b1764e18eb5f672fa9f35ab3ed8960bb57e15099 Mon Sep 17 00:00:00 2001 From: Jakub Konka Date: Mon, 20 May 2019 19:11:42 +0200 Subject: [PATCH] Add appveyor for automated Win testing --- 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 0000000000..b5149795bc --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,13 @@ +os: Visual Studio 2017 +environment: + matrix: + - TARGET: x86_64-pc-windows-msvc +install: + - appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe + - rustup-init.exe -yv --default-host %target% + - set PATH=%PATH%;%USERPROFILE%\.cargo\bin + - rustc -vV + - cargo -vV + - rustup component add rustfmt +build: false +test_script: test-all.bat \ No newline at end of file