From df04fa5ac3dcab0a758d0714a9cb6db01da858b7 Mon Sep 17 00:00:00 2001 From: Joe Rickerby Date: Fri, 13 Nov 2020 14:57:09 +0000 Subject: [PATCH] Use set -o errexit in the Azure example --- examples/azure-pipelines-minimal.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/examples/azure-pipelines-minimal.yml b/examples/azure-pipelines-minimal.yml index 498af96d..34043b05 100644 --- a/examples/azure-pipelines-minimal.yml +++ b/examples/azure-pipelines-minimal.yml @@ -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 .