diff options
Diffstat (limited to '.vsts/docs.yml')
-rw-r--r-- | .vsts/docs.yml | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/.vsts/docs.yml b/.vsts/docs.yml new file mode 100644 index 0000000..efa1e87 --- /dev/null +++ b/.vsts/docs.yml @@ -0,0 +1,43 @@ +# Current docs for the syntax of this file are at: +# https://github.com/Microsoft/vsts-agent/blob/master/docs/preview/yamlgettingstarted.md + +name: $(BuildDefinitionName)_$(Date:yyyyMMdd)$(Rev:.rr) + +queue: + name: Hosted Linux Preview + +trigger: + branches: + include: + - master + - 3.7 + - 3.6 + paths: + include: + - Doc/* + +#variables: + +steps: +- checkout: self + clean: true + fetchDepth: 5 + +- task: UsePythonVersion@0 + displayName: 'Use Python 3.6 or later' + inputs: + versionSpec: '>=3.6' + +- script: python -m pip install sphinx~=1.6.1 blurb python-docs-theme + displayName: 'Install build dependencies' + +- script: make check suspicious html PYTHON=python + workingDirectory: '$(build.sourcesDirectory)/Doc' + displayName: 'Build documentation' + +- task: PublishBuildArtifacts@1 + displayName: 'Publish build' + inputs: + PathToPublish: '$(build.sourcesDirectory)/Doc/build' + ArtifactName: build + publishLocation: Container |