@ -14,11 +14,15 @@ steps:
# stuff into. The virtualenv can probably be removed again, but this was a
# hard-fought battle and for now I am tired of this crap.
- script : |
sudo ln -fs /usr/bin/python$(python.version) /usr/bin/python
# need wheel before building virtualenv because of bdist_wheel and setuptools deps
/usr/bin/python -m pip install -U pip wheel setuptools
/usr/bin/python -m pip install -U virtualenv
/usr/bin/python -m virtualenv /tmp/venv -p /usr/bin/python$(python.version)
# Mac's System Integrity Protection prevents symlinking /usr/bin
# and Azure isn't allowing disabling it apparently: https://developercommunityapi.westus.cloudapp.azure.com/idea/558702/allow-disabling-sip-on-microsoft-hosted-macos-agen.html
(sudo ln -fs /usr/bin/python$(python.version) /usr/bin/python &&
/usr/bin/python -m pip install -U pip wheel setuptools &&
/usr/bin/python -m pip install -U virtualenv &&
/usr/bin/python -m virtualenv /tmp/venv -p /usr/bin/python$(python.version)) ||
(/usr/bin/python$(python.version) -m pip install -U pip wheel setuptools &&
/usr/bin/python$(python.version) -m venv /tmp/venv)
echo "##vso[task.prependpath]/tmp/venv/bin"
displayName : activate venv