appveyor: make the host x86_64 when testing the i686 target
This commit is contained in:
parent
a373683964
commit
aa553fe113
|
@ -6,8 +6,12 @@ environment:
|
||||||
install:
|
install:
|
||||||
- git submodule update --init
|
- git submodule update --init
|
||||||
- curl -sSf -o rustup-init.exe https://win.rustup.rs
|
- 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
|
- set PATH=%PATH%;C:\Users\appveyor\.cargo\bin
|
||||||
|
- ps: >-
|
||||||
|
If ($Env:TARGET -eq 'i686-pc-windows-msvc') {
|
||||||
|
rustup target add $Env:TARGET
|
||||||
|
}
|
||||||
- rustc -Vv
|
- rustc -Vv
|
||||||
- cargo -V
|
- cargo -V
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue