commit ed3dac1cc7cb57b00e158273ab1487d5fb3e4eb3 Author: Christopher Felegy <foxbot@protonmail.com> Date: Sun Jul 21 21:38:26 2019 -0400 merge docs into Windows_deploy commit de7768e2ff710cf183310e8d843cffb2e50285d4 Author: Christopher Felegy <foxbot@protonmail.com> Date: Sun Jul 21 21:31:12 2019 -0400 clone via ssh commit 3b25b4508ae1476d17d91e6394c5bacf2721a1fc Author: Christopher Felegy <foxbot@protonmail.com> Date: Sun Jul 21 21:27:15 2019 -0400 use proper \ in folder command commit 6a78a662ab21681fce2d9186888e92a3790752c0 Author: Christopher Felegy <foxbot@protonmail.com> Date: Sun Jul 21 21:24:37 2019 -0400 nugget commit 13064a6184b63ebafda540514391301412407638 Author: Christopher Felegy <foxbot@protonmail.com> Date: Sun Jul 21 21:17:26 2019 -0400 yes, i am sure commit 604b784e64fbbe24d8111bbfc53d59016871b244 Author: Christopher Felegy <foxbot@protonmail.com> Date: Sun Jul 21 21:12:49 2019 -0400 use proper \ in windows commands commit dd3954071433a1c10f42e8510bb7961d20a089d1 Author: Christopher Felegy <foxbot@protonmail.com> Date: Sun Jul 21 21:09:35 2019 -0400 install docfx.console from NuGetCommand commit 769693d834921217a51e15ef4ad34d0d7d612b33 Author: Christopher Felegy <foxbot@protonmail.com> Date: Sun Jul 21 20:59:58 2019 -0400 fix syntax error commit c8c4ea5439610f0591edbc56ee17384f6e87a162 Author: Christopher Felegy <foxbot@protonmail.com> Date: Sun Jul 21 20:57:31 2019 -0400 ci: build docs
43 lines
849 B
YAML
43 lines
849 B
YAML
variables:
|
|
buildConfiguration: Release
|
|
buildTag: $[ startsWith(variables['Build.SourceBranch'], 'refs/tags') ]
|
|
buildNumber: $[ variables['Build.BuildNumber'] ]
|
|
|
|
trigger:
|
|
tags:
|
|
include:
|
|
- '*'
|
|
branches:
|
|
include:
|
|
- '*'
|
|
|
|
jobs:
|
|
- job: Linux
|
|
pool:
|
|
vmImage: 'ubuntu-16.04'
|
|
steps:
|
|
- template: azure/build.yml
|
|
|
|
- job: Windows_build
|
|
pool:
|
|
vmImage: 'vs2017-win2016'
|
|
condition: ne(variables['Build.SourceBranch'], 'refs/heads/dev')
|
|
steps:
|
|
- template: azure/build.yml
|
|
|
|
- job: Windows_deploy
|
|
pool:
|
|
vmImage: 'vs2017-win2016'
|
|
condition: |
|
|
and (
|
|
succeeded(),
|
|
or (
|
|
eq(variables['Build.SourceBranch'], 'refs/heads/dev'),
|
|
eq(variables['buildTag'], True)
|
|
)
|
|
)
|
|
steps:
|
|
- template: azure/build.yml
|
|
- template: azure/deploy.yml
|
|
- template: azure/docs.yml
|