suyu-verify.yml 532 B

1234567891011121314151617181920212223
  1. # SPDX-FileCopyrightText: 2019 suyu Emulator Project
  2. # SPDX-License-Identifier: GPL-2.0-or-later
  3. stages:
  4. - stage: format
  5. displayName: 'format'
  6. jobs:
  7. - job: format
  8. displayName: 'clang'
  9. pool:
  10. vmImage: ubuntu-latest
  11. steps:
  12. - template: ./templates/format-check.yml
  13. parameters:
  14. artifactSource: 'false'
  15. - stage: build
  16. displayName: 'build'
  17. dependsOn: format
  18. jobs:
  19. - template: ./templates/build-standard.yml
  20. parameters:
  21. cache: 'false'
  22. - template: ./templates/build-testing.yml