diff options
author | bunnei <bunneidev@gmail.com> | 2019-10-03 01:28:03 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-03 01:28:03 +0200 |
commit | 6bfabdedfd636a74335f5b21b15f170f23c8c1a8 (patch) | |
tree | 120c7309f783cb16713028ad4e4994cf84e01813 /.ci/yuzu-patreon-step2.yml | |
parent | Merge pull request #2932 from DarkLordZach/azure-gitpages (diff) | |
parent | ci: Correct mainline release dependency (diff) | |
download | yuzu-6bfabdedfd636a74335f5b21b15f170f23c8c1a8.tar yuzu-6bfabdedfd636a74335f5b21b15f170f23c8c1a8.tar.gz yuzu-6bfabdedfd636a74335f5b21b15f170f23c8c1a8.tar.bz2 yuzu-6bfabdedfd636a74335f5b21b15f170f23c8c1a8.tar.lz yuzu-6bfabdedfd636a74335f5b21b15f170f23c8c1a8.tar.xz yuzu-6bfabdedfd636a74335f5b21b15f170f23c8c1a8.tar.zst yuzu-6bfabdedfd636a74335f5b21b15f170f23c8c1a8.zip |
Diffstat (limited to '.ci/yuzu-patreon-step2.yml')
-rw-r--r-- | .ci/yuzu-patreon-step2.yml | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/.ci/yuzu-patreon-step2.yml b/.ci/yuzu-patreon-step2.yml index 080118224..23e45d9dd 100644 --- a/.ci/yuzu-patreon-step2.yml +++ b/.ci/yuzu-patreon-step2.yml @@ -15,14 +15,16 @@ stages: dependsOn: format displayName: 'build' jobs: - - template: ./templates/build-standard.yml - parameters: - cache: 'true' -- stage: release - displayName: 'release' - dependsOn: build - jobs: - - job: azure - displayName: 'azure' + - job: build + displayName: 'windows-msvc' + pool: + vmImage: vs2017-win2016 steps: - - template: ./templates/release-universal.yml
\ No newline at end of file + - template: ./templates/sync-source.yml + parameters: + artifactSource: $(parameters.artifactSource) + needSubmodules: 'true' + - template: ./templates/build-msvc.yml + parameters: + artifactSource: 'false' + cache: $(parameters.cache) |