add some code to discover what versions of Python are available on the build agent

This commit is contained in:
Robin Dunn
2020-10-09 10:45:34 -07:00
parent c08fe42b39
commit faa0467e3a

View File

@@ -49,6 +49,8 @@ jobs:
- bash: |
which python
python -c "import sys; print(sys.version); print(sys.prefix)"
# check what Pythons are available
ls -al /c/hostedtoolcache/windows/Python
displayName: 'Check Python'
- bash: |