diff options
author | Bin Meng <bmeng.cn@gmail.com> | 2021-01-31 16:38:35 +0800 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-02-01 16:33:02 -0500 |
commit | aa8544e0d16ffed53597a99883e0eb1f17818f48 (patch) | |
tree | 7e81a83f46b79862c37614596e0074334269b0b1 | |
parent | 372497572b1102153a98bf20b833eb9d470c3805 (diff) | |
download | u-boot-WIP/2021-02-01-assorted-fixes.tar.gz |
azure: Add -E back for the world build scriptWIP/2021-02-01-assorted-fixes
Commit dd5c954e917b ("travis/gitlab/azure: Use -W to avoid warnings check")
added -W to avoid warnings check, but it mistakenly dropped -E for
the world build script in the azure pipelines.
This caused builds on the azure pipelines fail to report warnings. Let's
add it back.
Fixes: dd5c954e917b ("travis/gitlab/azure: Use -W to avoid warnings check")
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
-rw-r--r-- | .azure-pipelines.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml index 7a3eb78a5e..a6279427e1 100644 --- a/.azure-pipelines.yml +++ b/.azure-pipelines.yml @@ -458,7 +458,7 @@ jobs: cat << "EOF" >> build.sh if [[ "${BUILDMAN}" != "" ]]; then ret=0; - tools/buildman/buildman -o /tmp -P -W ${BUILDMAN} ${OVERRIDE} || ret=$?; + tools/buildman/buildman -o /tmp -P -E -W ${BUILDMAN} ${OVERRIDE} || ret=$?; if [[ $ret -ne 0 ]]; then tools/buildman/buildman -o /tmp -seP ${BUILDMAN}; exit $ret; |