From a14de909ebe26cf78cb6760235de7f2374a9a702 Mon Sep 17 00:00:00 2001 From: Roman Date: Mon, 2 Apr 2018 19:37:56 +0300 Subject: [PATCH] Build both x86 and x64 on Windows (#282) --- .appveyor.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index 31ba12150..ebb36df5b 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -1,11 +1,14 @@ environment: matrix: - TARGET: x86_64-pc-windows-msvc + platform: x64 + - TARGET: i686-pc-windows-msvc + platform: x86 + install: - appveyor-retry appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe - - rustup-init.exe -y --default-host x86_64-pc-windows-msvc + - rustup-init.exe -y --default-host %TARGET% - set PATH=%PATH%;C:\Users\appveyor\.cargo\bin - - if NOT "%TARGET%" == "x86_64-pc-windows-msvc" rustup target add %TARGET% - rustc -V - cargo -V