From 783ee1df791789d8958572acc3b158bf270e7744 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20F=C3=A6r=C3=B8y?= Date: Thu, 25 Aug 2022 14:08:00 +0000 Subject: [PATCH] Add AppVeyor configuration file. See: arti#450 --- .appveyor.yml | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 .appveyor.yml diff --git a/.appveyor.yml b/.appveyor.yml new file mode 100644 index 000000000..cc3123663 --- /dev/null +++ b/.appveyor.yml @@ -0,0 +1,57 @@ +image: + - Visual Studio 2019 + +environment: + matrix: + - channel: stable + target: x86_64-pc-windows-msvc + + - channel: stable + target: i686-pc-windows-msvc + + - channel: beta + target: x86_64-pc-windows-msvc + + - channel: beta + target: i686-pc-windows-msvc + + - channel: nightly + target: x86_64-pc-windows-msvc + + - channel: nightly + target: i686-pc-windows-msvc + + - channel: stable + target: x86_64-pc-windows-gnu + + - channel: stable + target: i686-pc-windows-gnu + + - channel: beta + target: x86_64-pc-windows-gnu + + - channel: beta + target: i686-pc-windows-gnu + + - channel: nightly + target: x86_64-pc-windows-gnu + + - channel: nightly + target: i686-pc-windows-gnu + +matrix: + allow_failures: + - channel: nightly + +install: + - appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe + - rustup-init -yv --default-toolchain %channel% --default-host %target% + - set PATH=%PATH%;%USERPROFILE%\.cargo\bin + - rustc -vV + - cargo -vV + - rustup show + +build: false + +test_script: + - cargo test --verbose %cargoflags%