summaryrefslogtreecommitdiffstats
path: root/.ci/yuzu-verify.yml
blob: d01c1feed060fa9fe5d6995ac5869dbfd0e15701 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
stages:
- stage: format
  displayName: 'format'
  jobs:
  - job: format
    displayName: 'clang'
    pool:
      vmImage: ubuntu-latest
    steps:
    - template: ./templates/format-check.yml
      parameters:
        artifactSource: 'false'
- stage: build
  displayName: 'build'
  dependsOn: format
  jobs:
  - template: ./templates/build-standard.yml
  - template: ./templates/build-testing.yml