Staging
v0.5.1
https://github.com/python/cpython
Revision 32ebd8508d4807a7c85d2ed8e9c3b44ecd6de591 authored by Serhiy Storchaka on 15 January 2019, 08:55:40 UTC, committed by GitHub on 15 January 2019, 08:55:40 UTC
1 parent efcf82f
Raw File
Tip revision: 32ebd8508d4807a7c85d2ed8e9c3b44ecd6de591 authored by Serhiy Storchaka on 15 January 2019, 08:55:40 UTC
bpo-29707: Document that os.path.ismount() is not able to reliable detect bind mounts. (GH-11238)
Tip revision: 32ebd85
windows-layout-steps.yml
parameters:
  kind: nuget
  extraOpts: --precompile

steps:
- script: .\python.bat PC\layout -vv -s "$(Build.SourcesDirectory)" -b "$(Py_OutDir)\$(arch)" -t "$(Py_IntDir)\layout-tmp-${{ parameters['kind'] }}-$(arch)" --copy "$(Py_OutDir)\layout-${{ parameters['kind'] }}-$(arch)" ${{ parameters['extraOpts'] }} --preset-${{ parameters['kind'] }} --include-tests
  displayName: Create ${{ parameters['kind'] }} layout

- script: .\python.exe -m test.pythoninfo
  workingDirectory: $(Py_OutDir)\layout-${{ parameters['kind'] }}-$(arch)
  displayName: Show layout info (${{ parameters['kind'] }})
back to top