appveyor.yml 763 B

123456789101112131415161718192021222324252627282930
  1. environment:
  2. matrix:
  3. - TARGET: i686-pc-windows-msvc
  4. - TARGET: x86_64-pc-windows-msvc
  5. install:
  6. - curl -sSf -o rustup-init.exe https://win.rustup.rs
  7. - rustup-init.exe --default-host %TARGET% --default-toolchain nightly -y
  8. - set PATH=%PATH%;C:\Users\appveyor\.cargo\bin
  9. - gem install gist
  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. on_success:
  19. - cmd: |
  20. CALL "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat"
  21. dumpbin /disasm target/release/librustc_builtins.rlib | gist -d "'%TARGET%/rustc-builtins.rlib' from commit '%APPVEYOR_REPO_COMMIT%' on branch '%APPVEYOR_REPO_branch%'"
  22. branches:
  23. only:
  24. - auto
  25. - try