yuzu/.ci/yuzu-mainline-step2.yml

73 lines
1.6 KiB
YAML
Raw Normal View History

trigger:
- master
2019-10-05 06:09:11 +02:00
variables:
DisplayVersion: $[counter(variables['DisplayPrefix'], 1)]
2019-07-14 03:34:40 +02:00
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'
2019-07-14 03:34:40 +02:00
jobs:
2019-10-02 23:58:52 +02:00
- job: build
timeoutInMinutes: 120
2019-10-02 23:58:52 +02:00
displayName: 'standard'
pool:
vmImage: ubuntu-latest
strategy:
maxParallel: 10
matrix:
linux:
BuildSuffix: 'linux'
ScriptFolder: 'linux'
steps:
- template: ./templates/sync-source.yml
parameters:
artifactSource: $(parameters.artifactSource)
needSubmodules: 'true'
- template: ./templates/build-single.yml
parameters:
artifactSource: 'false'
cache: 'true'
2019-10-05 06:09:11 +02:00
version: $(DisplayVersion)
2019-10-03 00:23:05 +02:00
- stage: build_win
2019-10-02 23:58:52 +02:00
dependsOn: format
displayName: 'build-windows'
jobs:
- job: build
timeoutInMinutes: 120
2019-10-02 23:58:52 +02:00
displayName: 'msvc'
pool:
vmImage: windows-2022
2019-10-02 23:58:52 +02:00
steps:
- template: ./templates/sync-source.yml
parameters:
artifactSource: $(parameters.artifactSource)
needSubmodules: 'true'
- template: ./templates/build-msvc.yml
parameters:
artifactSource: 'false'
cache: 'true'
2019-10-05 06:09:11 +02:00
version: $(DisplayVersion)
- stage: release
displayName: 'release'
dependsOn:
- build
- build_win
jobs:
- job: github
displayName: 'github'
pool:
vmImage: ubuntu-latest
steps:
- template: ./templates/release-github.yml