]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
azure: Add -E back for the world build script
authorBin Meng <bmeng.cn@gmail.com>
Sun, 31 Jan 2021 08:38:35 +0000 (16:38 +0800)
committerTom Rini <trini@konsulko.com>
Mon, 1 Feb 2021 21:33:02 +0000 (16:33 -0500)
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>
.azure-pipelines.yml

index 7a3eb78a5ea2a4fc76258e07a0fbee0e578a7610..a6279427e1389d7aeb6494df7461136b1bb516c8 100644 (file)
@@ -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;