1environment: 2 matrix: 3 - TARGET: nightly-x86_64-pc-windows-msvc 4 - TARGET: nightly-i686-pc-windows-msvc 5 - TARGET: nightly-x86_64-pc-windows-gnu 6 - TARGET: nightly-i686-pc-windows-gnu 7install: 8 - ps: Start-FileDownload "https://static.rust-lang.org/dist/rust-${env:TARGET}.exe" -FileName "rust-install.exe" 9 - ps: .\rust-install.exe /VERYSILENT /NORESTART /DIR="C:\rust" | Out-Null 10 - ps: $env:PATH="$env:PATH;C:\rust\bin" 11 - call "%VCVARS%" || ver>nul 12 - rustc -vV 13 - cargo -vV 14build: false 15test_script: 16 - cargo build 17