From 37d9a38aba3bb4b57c69423da6aafb0796c7b408 Mon Sep 17 00:00:00 2001 From: Paul Woolcock Date: Sun, 26 Aug 2018 18:52:02 -0400 Subject: [PATCH] expand the test matrix --- appveyor.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 07fd313..6087033 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -3,9 +3,19 @@ environment: - TARGET: x86_64-pc-windows-msvc OTHER_TARGET: i686-pc-windows-msvc MAKE_TARGETS: test-unit-x86_64-pc-windows-msvc + TOOLCHAIN: stable + - TARGET: x86_64-pc-windows-msvc + OTHER_TARGET: i686-pc-windows-msvc + MAKE_TARGETS: test-unit-x86_64-pc-windows-msvc + TOOLCHAIN: beta + - TARGET: x86_64-pc-windows-msvc + OTHER_TARGET: i686-pc-windows-msvc + MAKE_TARGETS: test-unit-x86_64-pc-windows-msvc + TOOLCHAIN: nightly + install: - appveyor-retry appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe - - rustup-init.exe -y --default-host x86_64-pc-windows-msvc --default-toolchain nightly + - rustup-init.exe -y --default-host x86_64-pc-windows-msvc --default-toolchain %TOOLCHAIN% - set PATH=%PATH%;C:\Users\appveyor\.cargo\bin - rustup target add %OTHER_TARGET% - rustc -V