Skip to content

Commit aa553fe

Browse files
author
Jorge Aparicio
committed
appveyor: make the host x86_64 when testing the i686 target
1 parent a373683 commit aa553fe

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

appveyor.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,12 @@ environment:
66
install:
77
- git submodule update --init
88
- curl -sSf -o rustup-init.exe https://win.rustup.rs
9-
- rustup-init.exe --default-host %TARGET% --default-toolchain nightly -y
9+
- rustup-init.exe --default-host x86_64-pc-windows-msvc --default-toolchain nightly -y
1010
- set PATH=%PATH%;C:\Users\appveyor\.cargo\bin
11+
- ps: >-
12+
If ($Env:TARGET -eq 'i686-pc-windows-msvc') {
13+
rustup target add $Env:TARGET
14+
}
1115
- rustc -Vv
1216
- cargo -V
1317

0 commit comments

Comments
 (0)