yuzu-fork/.ci/yuzu-patreon-step2.yml

35 lines
756 B
YAML
Raw Normal View History

trigger:
- master
2019-10-05 05:09:11 +01:00
variables:
DisplayVersion: $[counter(variables['DisplayPrefix'], 1)]
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:
2019-10-02 23:23:05 +01:00
- job: build
displayName: 'windows-msvc'
pool:
vmImage: vs2017-win2016
steps:
2019-10-02 23:23:05 +01:00
- template: ./templates/sync-source.yml
parameters:
artifactSource: $(parameters.artifactSource)
needSubmodules: 'true'
- template: ./templates/build-msvc.yml
parameters:
artifactSource: 'false'
cache: $(parameters.cache)
2019-10-05 05:09:11 +01:00
version: $(DisplayVersion)