diff options
| author | 2022-07-31 21:07:46 -0400 | |
|---|---|---|
| committer | 2022-07-31 21:07:46 -0400 | |
| commit | 6b58db9ccda970aada8f7d4b3d53c6e5759a6fb7 (patch) | |
| tree | 94e50a77e590f58ffd181cbd1c8fc334b3767f79 | |
| parent | ci/linux: EA AppImage adjustments (diff) | |
| download | yuzu-6b58db9ccda970aada8f7d4b3d53c6e5759a6fb7.tar.gz yuzu-6b58db9ccda970aada8f7d4b3d53c6e5759a6fb7.tar.xz yuzu-6b58db9ccda970aada8f7d4b3d53c6e5759a6fb7.zip | |
patreon step2: Use jobs to build for Windows and Linux
Apparently the two stages were not building in parallel. Specify
individual jobs that run MSVC and Linux building instead.
| -rw-r--r-- | .ci/yuzu-patreon-step2.yml | 16 |
1 files changed, 5 insertions, 11 deletions
diff --git a/.ci/yuzu-patreon-step2.yml b/.ci/yuzu-patreon-step2.yml index 4c5ede3bc..b4995782b 100644 --- a/.ci/yuzu-patreon-step2.yml +++ b/.ci/yuzu-patreon-step2.yml | |||
| @@ -8,10 +8,10 @@ variables: | |||
| 8 | DisplayVersion: $[counter(variables['DisplayPrefix'], 1)] | 8 | DisplayVersion: $[counter(variables['DisplayPrefix'], 1)] |
| 9 | 9 | ||
| 10 | stages: | 10 | stages: |
| 11 | - stage: build_gcc | 11 | - stage: build |
| 12 | displayName: 'build-gcc' | 12 | displayName: 'build' |
| 13 | jobs: | 13 | jobs: |
| 14 | - job: build | 14 | - job: linux |
| 15 | timeoutInMinutes: 120 | 15 | timeoutInMinutes: 120 |
| 16 | displayName: 'linux' | 16 | displayName: 'linux' |
| 17 | pool: | 17 | pool: |
| @@ -32,11 +32,7 @@ stages: | |||
| 32 | artifactSource: 'false' | 32 | artifactSource: 'false' |
| 33 | cache: $(parameters.cache) | 33 | cache: $(parameters.cache) |
| 34 | version: $(DisplayVersion) | 34 | version: $(DisplayVersion) |
| 35 | - stage: build_msvc | 35 | - job: msvc |
| 36 | dependsOn: [] | ||
| 37 | displayName: 'build-msvc' | ||
| 38 | jobs: | ||
| 39 | - job: build | ||
| 40 | timeoutInMinutes: 120 | 36 | timeoutInMinutes: 120 |
| 41 | displayName: 'windows' | 37 | displayName: 'windows' |
| 42 | pool: | 38 | pool: |
| @@ -53,9 +49,7 @@ stages: | |||
| 53 | version: $(DisplayVersion) | 49 | version: $(DisplayVersion) |
| 54 | - stage: release | 50 | - stage: release |
| 55 | displayName: 'release' | 51 | displayName: 'release' |
| 56 | dependsOn: | 52 | dependsOn: build |
| 57 | - build_gcc | ||
| 58 | - build_msvc | ||
| 59 | jobs: | 53 | jobs: |
| 60 | - job: release | 54 | - job: release |
| 61 | displayName: 'source' | 55 | displayName: 'source' |