mirror of https://github.com/yuzu-mirror/yuzu
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
396 B
YAML
18 lines
396 B
YAML
6 years ago
|
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
|