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.

26 lines
646 B

  1. environment:
  2. matrix:
  3. - TARGET: x86_64-pc-windows-gnu
  4. BITS: 64
  5. MSYS2: 1
  6. - TARGET: x86_64-pc-windows-msvc
  7. BITS: 64
  8. - TARGET: i686-pc-windows-gnu
  9. BITS: 32
  10. MSYS2: 1
  11. - TARGET: i686-pc-windows-msvc
  12. BITS: 32
  13. install:
  14. - cmd: >-
  15. curl -sSf -o rustup-init.exe https://win.rustup.rs/ &
  16. rustup-init.exe -y --default-host %TARGET% &
  17. set PATH=%PATH%;C:\Users\appveyor\.cargo\bin &
  18. if defined MSYS2 set PATH=C:\msys64\mingw%BITS%\bin;%PATH% &
  19. rustc -V &
  20. cargo -V
  21. build: false
  22. test_script:
  23. - cargo build --verbose --all
  24. - cargo test --verbose --all
  25. branches:
  26. only:
  27. - master