Use set -o errexit in the Azure example

This commit is contained in:
Joe Rickerby
2020-11-13 14:57:09 +00:00
parent 8e38132000
commit df04fa5ac3
+3
View File
@@ -4,6 +4,7 @@ jobs:
steps:
- task: UsePythonVersion@0
- bash: |
set -o errexit
python3 -m pip install --upgrade pip
pip3 install cibuildwheel==1.6.4
cibuildwheel --output-dir wheelhouse .
@@ -15,6 +16,7 @@ jobs:
steps:
- task: UsePythonVersion@0
- bash: |
set -o errexit
python3 -m pip install --upgrade pip
pip3 install cibuildwheel==1.6.4
cibuildwheel --output-dir wheelhouse .
@@ -28,6 +30,7 @@ jobs:
- script: choco install vcpython27 -f -y
displayName: Install Visual C++ for Python 2.7
- bash: |
set -o errexit
python -m pip install --upgrade pip
pip install cibuildwheel==1.6.4
cibuildwheel --output-dir wheelhouse .