diff options
| author | Tom Rini <[email protected]> | 2025-02-07 13:12:50 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-02-10 10:23:25 -0600 |
| commit | 499386c5eb62930b7db086c05a5d0b423226ca66 (patch) | |
| tree | 80aa82fc0d17d038e929a714deb85a72d4a3292b | |
| parent | cfdf18b31b0f5aa4b1ffdac28a4e823e8bf31159 (diff) | |
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]>
| -rw-r--r-- | .azure-pipelines.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml index db471e67107..bd197cd6e66 100644 --- a/.azure-pipelines.yml +++ b/.azure-pipelines.yml @@ -89,6 +89,7 @@ stages: options: $(container_option) steps: - script: | + set -e virtualenv -p /usr/bin/python3 /tmp/venvhtml . /tmp/venvhtml/bin/activate pip install -r doc/sphinx/requirements.txt |
