diff options
| author | Morph <39850852+Morph1984@users.noreply.github.com> | 2022-09-16 12:47:38 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-09-16 12:47:38 -0400 |
| commit | 882dfa36ae25fc6d0167c2c0fbce1e19c1406fae (patch) | |
| tree | 0d4ccca773814ac3c1c2dc98a5bae11acd0295cb /.ci/yuzu-patreon-step2.yml | |
| parent | 60aa9422101267c175e8604adf0d5e6a1ce7bdcd (diff) | |
| parent | 6b58db9ccda970aada8f7d4b3d53c6e5759a6fb7 (diff) | |
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.yml | 25 |
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: - stage: build displayName: 'build' jobs: - - job: build + - job: linux 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) + - job: msvc + timeoutInMinutes: 120 + displayName: 'windows' pool: vmImage: windows-2022 steps: |
