ci: Add two step patreon build pipeline

This commit is contained in:
Zach Hilman
2019-09-26 09:42:18 -04:00
parent 0ba7055873
commit 867e1db287
3 changed files with 36 additions and 19 deletions

View File

@@ -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