parent
0d20eb4b59
commit
c43a2ee793
@ -0,0 +1,21 @@ |
||||
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 |
Loading…
Reference in new issue