summaryrefslogtreecommitdiffstats
path: root/.ci/yuzu-mainline.yml
blob: 164bcb165ba1fe330fda00ca2d3136abc2836cd0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
trigger:
- master

stages:
- stage: merge
  displayName: 'merge'
  jobs:
  - template: ./templates/merge.yml
- stage: format
  dependsOn: merge
  displayName: 'format'
  jobs:
  - job: format
    displayName: 'clang'
    pool:
      vmImage: ubuntu-latest
    steps:
    - template: ./templates/format-check.yml
- stage: build
  displayName: 'build'
  dependsOn: format
  jobs:
  - template: ./templates/build-standard.yml