summaryrefslogtreecommitdiffstats
path: root/.ci/yuzu-mainline-step2.yml
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--.ci/yuzu-mainline-step2.yml68
1 files changed, 68 insertions, 0 deletions
diff --git a/.ci/yuzu-mainline-step2.yml b/.ci/yuzu-mainline-step2.yml
new file mode 100644
index 000000000..5f2dfb3d8
--- /dev/null
+++ b/.ci/yuzu-mainline-step2.yml
@@ -0,0 +1,68 @@
+trigger:
+- master
+
+variables:
+ DisplayVersion: $[counter(variables['DisplayPrefix'], 1)]
+
+stages:
+- stage: format
+ displayName: 'format'
+ jobs:
+ - job: format
+ displayName: 'clang'
+ pool:
+ vmImage: ubuntu-latest
+ steps:
+ - template: ./templates/format-check.yml
+- stage: build
+ dependsOn: format
+ displayName: 'build'
+ jobs:
+ - job: build
+ displayName: 'standard'
+ 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: 'true'
+ version: $(DisplayVersion)
+- stage: build_win
+ dependsOn: format
+ displayName: 'build-windows'
+ jobs:
+ - job: build
+ displayName: 'msvc'
+ pool:
+ vmImage: vs2017-win2016
+ steps:
+ - template: ./templates/sync-source.yml
+ parameters:
+ artifactSource: $(parameters.artifactSource)
+ needSubmodules: 'true'
+ - template: ./templates/build-msvc.yml
+ parameters:
+ artifactSource: 'false'
+ cache: 'true'
+ version: $(DisplayVersion)
+- stage: release
+ displayName: 'release'
+ dependsOn:
+ - build
+ - build_win
+ jobs:
+ - job: github
+ displayName: 'github'
+ steps:
+ - template: ./templates/release-github.yml \ No newline at end of file