diff options
author | Zach Hilman <zachhilman@gmail.com> | 2019-09-26 09:42:18 -0400 |
---|---|---|
committer | Zach Hilman <zachhilman@gmail.com> | 2019-09-26 09:42:22 -0400 |
commit | 867e1db287c832a77164abe0b6550638406723a9 (patch) | |
tree | 88b99118678d3841aecdd603a1e4e61afc8b61d0 /.ci/yuzu-patreon-step2.yml | |
parent | 0ba70558734bcd63f61e0ed485857604e96a2272 (diff) |
ci: Add two step patreon build pipeline
Diffstat (limited to '.ci/yuzu-patreon-step2.yml')
-rw-r--r-- | .ci/yuzu-patreon-step2.yml | 28 |
1 files changed, 28 insertions, 0 deletions
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 @@ +trigger: +- master + +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: + - template: ./templates/build-standard.yml + parameters: + cache: 'true' +- stage: release + displayName: 'release' + dependsOn: build + jobs: + - job: azure + displayName: 'azure' + steps: + - template: ./templates/release-universal.yml
\ No newline at end of file |