summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlat9nq <22451773+lat9nq@users.noreply.github.com>2021-07-18 00:41:11 +0200
committerlat9nq <lat9nq@gmail.com>2022-07-31 07:35:12 +0200
commit69bd6cd4904b9c392d1c79f3049e01a3f5a1e15c (patch)
tree081ff57e950ab7553afa3a010a25db9d130ff0b5
parentci,linux: Support Patreon releases (diff)
downloadyuzu-69bd6cd4904b9c392d1c79f3049e01a3f5a1e15c.tar
yuzu-69bd6cd4904b9c392d1c79f3049e01a3f5a1e15c.tar.gz
yuzu-69bd6cd4904b9c392d1c79f3049e01a3f5a1e15c.tar.bz2
yuzu-69bd6cd4904b9c392d1c79f3049e01a3f5a1e15c.tar.lz
yuzu-69bd6cd4904b9c392d1c79f3049e01a3f5a1e15c.tar.xz
yuzu-69bd6cd4904b9c392d1c79f3049e01a3f5a1e15c.tar.zst
yuzu-69bd6cd4904b9c392d1c79f3049e01a3f5a1e15c.zip
-rw-r--r--.ci/yuzu-patreon-step2.yml35
1 files changed, 31 insertions, 4 deletions
diff --git a/.ci/yuzu-patreon-step2.yml b/.ci/yuzu-patreon-step2.yml
index 33c081c53..4c5ede3bc 100644
--- a/.ci/yuzu-patreon-step2.yml
+++ b/.ci/yuzu-patreon-step2.yml
@@ -8,12 +8,37 @@ variables:
DisplayVersion: $[counter(variables['DisplayPrefix'], 1)]
stages:
-- stage: build
- displayName: 'build'
+- stage: build_gcc
+ displayName: 'build-gcc'
jobs:
- job: build
timeoutInMinutes: 120
- displayName: 'windows-msvc'
+ displayName: 'linux'
+ 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: $(parameters.cache)
+ version: $(DisplayVersion)
+- stage: build_msvc
+ dependsOn: []
+ displayName: 'build-msvc'
+ jobs:
+ - job: build
+ timeoutInMinutes: 120
+ displayName: 'windows'
pool:
vmImage: windows-2019
steps:
@@ -28,7 +53,9 @@ stages:
version: $(DisplayVersion)
- stage: release
displayName: 'release'
- dependsOn: build
+ dependsOn:
+ - build_gcc
+ - build_msvc
jobs:
- job: release
displayName: 'source'