summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Zach Hilman2019-09-26 09:42:18 -0400
committerGravatar Zach Hilman2019-09-26 09:42:22 -0400
commit867e1db287c832a77164abe0b6550638406723a9 (patch)
tree88b99118678d3841aecdd603a1e4e61afc8b61d0
parentci: Add private mergebot CI templates (diff)
downloadyuzu-867e1db287c832a77164abe0b6550638406723a9.tar.gz
yuzu-867e1db287c832a77164abe0b6550638406723a9.tar.xz
yuzu-867e1db287c832a77164abe0b6550638406723a9.zip
ci: Add two step patreon build pipeline
Diffstat (limited to '')
-rw-r--r--.ci/yuzu-patreon-step1.yml8
-rw-r--r--.ci/yuzu-patreon-step2.yml28
-rw-r--r--.ci/yuzu-patreon.yml19
3 files changed, 36 insertions, 19 deletions
diff --git a/.ci/yuzu-patreon-step1.yml b/.ci/yuzu-patreon-step1.yml
new file mode 100644
index 000000000..cf30397cd
--- /dev/null
+++ b/.ci/yuzu-patreon-step1.yml
@@ -0,0 +1,8 @@
1trigger:
2- master
3
4stages:
5- stage: merge
6 displayName: 'merge'
7 jobs:
8 - template: ./templates/merge-private.yml
diff --git a/.ci/yuzu-patreon-step2.yml b/.ci/yuzu-patreon-step2.yml
new file mode 100644
index 000000000..080118224
--- /dev/null
+++ b/.ci/yuzu-patreon-step2.yml
@@ -0,0 +1,28 @@
1trigger:
2- master
3
4stages:
5- stage: format
6 displayName: 'format'
7 jobs:
8 - job: format
9 displayName: 'clang'
10 pool:
11 vmImage: ubuntu-latest
12 steps:
13 - template: ./templates/format-check.yml
14- stage: build
15 dependsOn: format
16 displayName: 'build'
17 jobs:
18 - template: ./templates/build-standard.yml
19 parameters:
20 cache: 'true'
21- stage: release
22 displayName: 'release'
23 dependsOn: build
24 jobs:
25 - job: azure
26 displayName: 'azure'
27 steps:
28 - template: ./templates/release-universal.yml \ No newline at end of file
diff --git a/.ci/yuzu-patreon.yml b/.ci/yuzu-patreon.yml
deleted file mode 100644
index aa912913d..000000000
--- a/.ci/yuzu-patreon.yml
+++ /dev/null
@@ -1,19 +0,0 @@
1# Starter pipeline
2# Start with a minimal pipeline that you can customize to build and deploy your code.
3# Add steps that build, run tests, deploy, and more:
4# https://aka.ms/yaml
5
6trigger:
7- master
8
9pool:
10 vmImage: 'ubuntu-latest'
11
12steps:
13- script: echo Hello, world!
14 displayName: 'Run a one-line script'
15
16- script: |
17 echo Add other tasks to build, test, and deploy your project.
18 echo See https://aka.ms/yaml
19 displayName: 'Run a multi-line script'