diff options
Diffstat (limited to '.ci/yuzu-patreon-step2.yml')
-rw-r--r-- | .ci/yuzu-patreon-step2.yml | 28 |
1 files changed, 21 insertions, 7 deletions
diff --git a/.ci/yuzu-patreon-step2.yml b/.ci/yuzu-patreon-step2.yml index 080118224..35c5fbe36 100644 --- a/.ci/yuzu-patreon-step2.yml +++ b/.ci/yuzu-patreon-step2.yml @@ -1,6 +1,9 @@ trigger: - master +variables: + DisplayVersion: $[counter(variables['DisplayPrefix'], 1)] + stages: - stage: format displayName: 'format' @@ -15,14 +18,25 @@ stages: dependsOn: format displayName: 'build' jobs: - - template: ./templates/build-standard.yml - parameters: - cache: 'true' + - job: build + displayName: 'windows-msvc' + pool: + vmImage: vs2017-win2016 + steps: + - template: ./templates/sync-source.yml + parameters: + artifactSource: $(parameters.artifactSource) + needSubmodules: 'true' + - template: ./templates/build-msvc.yml + parameters: + artifactSource: 'false' + cache: $(parameters.cache) + version: $(DisplayVersion) - stage: release displayName: 'release' dependsOn: build jobs: - - job: azure - displayName: 'azure' - steps: - - template: ./templates/release-universal.yml
\ No newline at end of file + - job: release + displayName: 'source' + steps: + - template: ./templates/release-private-tag.yml |