yuzu-verify.yml 434 B

1234567891011121314151617181920
  1. stages:
  2. - stage: format
  3. displayName: 'format'
  4. jobs:
  5. - job: format
  6. displayName: 'clang'
  7. pool:
  8. vmImage: ubuntu-latest
  9. steps:
  10. - template: ./templates/format-check.yml
  11. parameters:
  12. artifactSource: 'false'
  13. - stage: build
  14. displayName: 'build'
  15. dependsOn: format
  16. jobs:
  17. - template: ./templates/build-standard.yml
  18. parameters:
  19. cache: 'false'
  20. - template: ./templates/build-testing.yml