You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
572 B
21 lines
572 B
environment:
|
|
matrix:
|
|
- TARGET: x86_64-pc-windows-msvc
|
|
- TARGET: i686-pc-windows-msvc
|
|
#- TARGET: x86_64-pc-windows-gnu
|
|
#- TARGET: i686-pc-windows-gnu
|
|
|
|
install:
|
|
- ps: Start-FileDownload "https://static.rust-lang.org/dist/rust-nightly-${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"
|
|
- rustc -vV
|
|
- cargo -vV
|
|
|
|
build_script:
|
|
- git submodule -q update --init
|
|
- cargo build -v
|
|
|
|
test_script:
|
|
- SET RUST_BACKTRACE=1
|
|
- cargo test -v
|
|
|