From aa553fe1137a0372b8df90853569f29382e679ce Mon Sep 17 00:00:00 2001 From: Jorge Aparicio Date: Tue, 11 Apr 2017 14:28:31 -0500 Subject: [PATCH] appveyor: make the host x86_64 when testing the i686 target --- appveyor.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 61e5d6c..7c82726 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -6,8 +6,12 @@ environment: install: - git submodule update --init - curl -sSf -o rustup-init.exe https://win.rustup.rs - - rustup-init.exe --default-host %TARGET% --default-toolchain nightly -y + - rustup-init.exe --default-host x86_64-pc-windows-msvc --default-toolchain nightly -y - set PATH=%PATH%;C:\Users\appveyor\.cargo\bin + - ps: >- + If ($Env:TARGET -eq 'i686-pc-windows-msvc') { + rustup target add $Env:TARGET + } - rustc -Vv - cargo -V