We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a373683 commit aa553feCopy full SHA for aa553fe
appveyor.yml
@@ -6,8 +6,12 @@ environment:
6
install:
7
- git submodule update --init
8
- curl -sSf -o rustup-init.exe https://win.rustup.rs
9
- - rustup-init.exe --default-host %TARGET% --default-toolchain nightly -y
+ - rustup-init.exe --default-host x86_64-pc-windows-msvc --default-toolchain nightly -y
10
- 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
+ }
15
- rustc -Vv
16
- cargo -V
17
0 commit comments