appveyor.yml 569 B

1234567891011121314151617181920
  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 --target %TARGET%
  15. - cargo build --release --target %TARGET%
  16. - cargo test --no-default-features --target %TARGET%
  17. - cargo test --no-default-features --release --target %TARGET%