summaryrefslogtreecommitdiff
path: root/.ci/yuzu-patreon-step2.yml
diff options
context:
space:
mode:
authorGravatar Morph2022-09-16 12:47:38 -0400
committerGravatar GitHub2022-09-16 12:47:38 -0400
commit882dfa36ae25fc6d0167c2c0fbce1e19c1406fae (patch)
tree0d4ccca773814ac3c1c2dc98a5bae11acd0295cb /.ci/yuzu-patreon-step2.yml
parentMerge pull request #8911 from lioncash/cexpr-string (diff)
parentpatreon step2: Use jobs to build for Windows and Linux (diff)
downloadyuzu-882dfa36ae25fc6d0167c2c0fbce1e19c1406fae.tar.gz
yuzu-882dfa36ae25fc6d0167c2c0fbce1e19c1406fae.tar.xz
yuzu-882dfa36ae25fc6d0167c2c0fbce1e19c1406fae.zip
Merge pull request #6667 from lat9nq/ea-appimage
ci,linux: Support Patreon releases
Diffstat (limited to '.ci/yuzu-patreon-step2.yml')
-rw-r--r--.ci/yuzu-patreon-step2.yml25
1 files changed, 23 insertions, 2 deletions
diff --git a/.ci/yuzu-patreon-step2.yml b/.ci/yuzu-patreon-step2.yml
index 5d5b140fd..71a23ebe6 100644
--- a/.ci/yuzu-patreon-step2.yml
+++ b/.ci/yuzu-patreon-step2.yml
@@ -11,9 +11,30 @@ stages:
11- stage: build 11- stage: build
12 displayName: 'build' 12 displayName: 'build'
13 jobs: 13 jobs:
14 - job: build 14 - job: linux
15 timeoutInMinutes: 120 15 timeoutInMinutes: 120
16 displayName: 'windows-msvc' 16 displayName: 'linux'
17 pool:
18 vmImage: ubuntu-latest
19 strategy:
20 maxParallel: 10
21 matrix:
22 linux:
23 BuildSuffix: 'linux'
24 ScriptFolder: 'linux'
25 steps:
26 - template: ./templates/sync-source.yml
27 parameters:
28 artifactSource: $(parameters.artifactSource)
29 needSubmodules: 'true'
30 - template: ./templates/build-single.yml
31 parameters:
32 artifactSource: 'false'
33 cache: $(parameters.cache)
34 version: $(DisplayVersion)
35 - job: msvc
36 timeoutInMinutes: 120
37 displayName: 'windows'
17 pool: 38 pool:
18 vmImage: windows-2022 39 vmImage: windows-2022
19 steps: 40 steps: