Skip to content

Commit 499386c

Browse files
committed
Azure: Add missing "set -e" to docs job
Without setting the shell flag to exit immediately when a command exists with a non-zero status we can have the situation where the htmldocs target fails with an error but the job will succeed due to infodocs passing and being the last build target. Signed-off-by: Tom Rini <[email protected]>
1 parent cfdf18b commit 499386c

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

.azure-pipelines.yml

+1
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ stages:
8989
options: $(container_option)
9090
steps:
9191
- script: |
92+
set -e
9293
virtualenv -p /usr/bin/python3 /tmp/venvhtml
9394
. /tmp/venvhtml/bin/activate
9495
pip install -r doc/sphinx/requirements.txt

0 commit comments

Comments
 (0)