platform: - x64 environment: matrix: - TARGET: i686-pc-windows-msvc - TARGET: x86_64-pc-windows-msvc install: - chcp - curl -sSf -o rustup-init.exe https://win.rustup.rs - rustup-init.exe -y - set PATH=%PATH%;C:\Users\appveyor\.cargo\bin - if NOT "%TARGET%" == "x86_64-pc-windows-msvc" rustup target add %TARGET% build_script: - cmd: cargo test --release --target=%TARGET%