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 <trini@konsulko.com>
This commit is contained in:
@@ -89,6 +89,7 @@ stages:
|
|||||||
options: $(container_option)
|
options: $(container_option)
|
||||||
steps:
|
steps:
|
||||||
- script: |
|
- script: |
|
||||||
|
set -e
|
||||||
virtualenv -p /usr/bin/python3 /tmp/venvhtml
|
virtualenv -p /usr/bin/python3 /tmp/venvhtml
|
||||||
. /tmp/venvhtml/bin/activate
|
. /tmp/venvhtml/bin/activate
|
||||||
pip install -r doc/sphinx/requirements.txt
|
pip install -r doc/sphinx/requirements.txt
|
||||||
|
Reference in New Issue
Block a user