azure-pipelines.yml 650 B

12345678910111213141516171819202122232425262728293031323334
  1. trigger:
  2. - master
  3. pr:
  4. - master
  5. jobs:
  6. - job: Linux
  7. pool:
  8. vmImage: ubuntu-16.04
  9. steps:
  10. - template: ci/azure-steps.yml
  11. strategy:
  12. matrix:
  13. aarch64-unknown-linux-gnu:
  14. TARGET: aarch64-unknown-linux-gnu
  15. - job: macOS
  16. pool:
  17. vmImage: macos-10.13
  18. steps:
  19. - template: ci/azure-steps.yml
  20. strategy:
  21. matrix:
  22. x86_64-apple-darwin:
  23. TARGET: x86_64-apple-darwin
  24. - job: Windows
  25. pool:
  26. vmImage: 'vs2017-win2016'
  27. steps:
  28. - template: ci/azure-steps.yml
  29. strategy:
  30. matrix:
  31. i686-pc-windows-msvc:
  32. TARGET: i686-pc-windows-msvc