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.

16 lines
543 B

  1. version: 1.0.{build}
  2. environment:
  3. matrix:
  4. - TARGET: x86_64-pc-windows-msvc
  5. - TARGET: i686-pc-windows-msvc
  6. - TARGET: i686-pc-windows-gnu
  7. install:
  8. - ps: >-
  9. Start-FileDownload "https://static.rust-lang.org/dist/rust-nightly-${env:TARGET}.exe"
  10. - rust-nightly-%TARGET%.exe /VERYSILENT /NORESTART /DIR="C:\Program Files (x86)\Rust"
  11. - SET PATH=%PATH%;C:\Program Files (x86)\Rust\bin
  12. - SET PATH=%PATH%;C:\MinGW\bin
  13. - rustc -V
  14. - cargo -V
  15. build: off
  16. test_script:
  17. - ps: cargo test --verbose