appveyor.yml 493 B

12345678910111213141516171819202122232425
  1. environment:
  2. matrix:
  3. - TARGET: i686-pc-windows-msvc
  4. - TARGET: x86_64-pc-windows-msvc
  5. install:
  6. - git submodule update --init
  7. - curl -sSf -o rustup-init.exe https://win.rustup.rs
  8. - rustup-init.exe --default-host %TARGET% --default-toolchain nightly -y
  9. - set PATH=%PATH%;C:\Users\appveyor\.cargo\bin
  10. - rustc -Vv
  11. - cargo -V
  12. build: false
  13. test_script:
  14. - cargo build
  15. - cargo build --release
  16. - cargo test
  17. - cargo test --release
  18. branches:
  19. only:
  20. - auto
  21. - try