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.
28 lines
527 B
YAML
28 lines
527 B
YAML
5 years ago
|
trigger:
|
||
|
- master
|
||
|
|
||
|
stages:
|
||
|
- stage: format
|
||
|
displayName: 'format'
|
||
|
jobs:
|
||
|
- job: format
|
||
|
displayName: 'clang'
|
||
|
pool:
|
||
|
vmImage: ubuntu-latest
|
||
|
steps:
|
||
|
- template: ./templates/format-check.yml
|
||
|
- stage: build
|
||
|
dependsOn: format
|
||
|
displayName: 'build'
|
||
|
jobs:
|
||
|
- template: ./templates/build-standard.yml
|
||
|
parameters:
|
||
|
cache: 'true'
|
||
|
- stage: release
|
||
|
displayName: 'release'
|
||
|
dependsOn: build
|
||
|
jobs:
|
||
|
- job: azure
|
||
|
displayName: 'azure'
|
||
|
steps:
|
||
|
- template: ./templates/release-universal.yml
|