summaryrefslogtreecommitdiffstats
path: root/.ci/yuzu-mainline.yml
blob: 2930a85647fc1e55ecd805f1f26cd0765c4d44e9 (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
24
25
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
    parameters:
      cache: 'true'