зеркало из https://github.com/mozilla/gecko-dev.git
19 строки
769 B
YAML
19 строки
769 B
YAML
environment:
|
|
matrix:
|
|
- TARGET: nightly-x86_64-pc-windows-msvc
|
|
VCVARS: "C:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\VC\\bin\\amd64\\vcvars64.bat"
|
|
- TARGET: nightly-i686-pc-windows-msvc
|
|
VCVARS: "C:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\VC\\bin\\vcvars32.bat"
|
|
- TARGET: nightly-x86_64-pc-windows-gnu
|
|
- TARGET: nightly-i686-pc-windows-gnu
|
|
- TARGET: 1.2.0-x86_64-pc-windows-gnu
|
|
install:
|
|
- ps: Start-FileDownload "https://static.rust-lang.org/dist/rust-${env:TARGET}.exe" -FileName "rust-install.exe"
|
|
- ps: .\rust-install.exe /VERYSILENT /NORESTART /DIR="C:\rust" | Out-Null
|
|
- ps: $env:PATH="$env:PATH;C:\rust\bin"
|
|
- call "%VCVARS%" || ver>nul
|
|
- rustc -vV
|
|
- cargo -vV
|
|
build: false
|
|
test_script:
|
|
- cargo test --verbose |