diff options
Diffstat (limited to '.vsts/macos-pr.yml')
-rw-r--r-- | .vsts/macos-pr.yml | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/.vsts/macos-pr.yml b/.vsts/macos-pr.yml new file mode 100644 index 0000000..8a4f6ba --- /dev/null +++ b/.vsts/macos-pr.yml @@ -0,0 +1,37 @@ +# 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 macOS Preview + +trigger: + branches: + include: + - master + - 3.7 + - 3.6 + paths: + exclude: + - Doc/* + - Tools/* + +#variables: + +steps: +- checkout: self + clean: true + fetchDepth: 5 + +- script: ./configure --with-pydebug --with-openssl=/usr/local/opt/openssl + displayName: 'Configure CPython (debug)' + +- script: make -s -j4 + displayName: 'Build CPython' + +- script: make pythoninfo + displayName: 'Display build info' + +- script: make buildbottest TESTOPTS="-j4 -uall,-cpu" + displayName: 'Tests' |