diff options
author | Zach Hilman <DarkLordZach@users.noreply.github.com> | 2019-09-22 16:01:29 -0400 |
---|---|---|
committer | Flame Sage <chris062689@gmail.com> | 2019-09-22 20:01:29 +0000 |
commit | cc3db2aa43ee617ed5086976e0354c72feba713c (patch) | |
tree | 4e61181ceb6784282cb034cf5231d9b259ce6e1d /.ci/yuzu-mainline-step2.yml | |
parent | aaec1562f8631303d1a5abb6c75f2422d6d7cf71 (diff) |
ci: Split mainline pipeline and add support for GitHub releases (#2900)
* ci: Add mock build alternative for fast testing
* ci: Always cache build
* ci: Extract steps to download build stage artifacts
* ci: Add template to release to GitHub
* ci: Add template to release to Azure Universal Artifacts
* ci: Split mainline to two pipelines
Diffstat (limited to '.ci/yuzu-mainline-step2.yml')
-rw-r--r-- | .ci/yuzu-mainline-step2.yml | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/.ci/yuzu-mainline-step2.yml b/.ci/yuzu-mainline-step2.yml new file mode 100644 index 000000000..fec724d11 --- /dev/null +++ b/.ci/yuzu-mainline-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: github + displayName: 'GitHub Release' + steps: + - template: ./templates/release-github.yml
\ No newline at end of file |