You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by xi...@apache.org on 2020/04/17 09:51:55 UTC

[incubator-nuttx-testing] branch master updated: cibuild.sh: enable -Werror for precheck and nightly build as default

This is an automated email from the ASF dual-hosted git repository.

xiaoxiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-testing.git


The following commit(s) were added to refs/heads/master by this push:
     new 2717c2a  cibuild.sh: enable -Werror for precheck and nightly build as default
2717c2a is described below

commit 2717c2a2a438c047e481f3f9c870a6be6ed91595
Author: liuhaitao <li...@xiaomi.com>
AuthorDate: Wed Apr 15 11:41:09 2020 +0800

    cibuild.sh: enable -Werror for precheck and nightly build as default
    
    Signed-off-by: liuhaitao <li...@xiaomi.com>
---
 cibuild.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cibuild.sh b/cibuild.sh
index 5efdcc0..10f06ac 100755
--- a/cibuild.sh
+++ b/cibuild.sh
@@ -289,7 +289,7 @@ function run_builds {
   options+="-j $ncpus"
 
   for build in $builds; do
-    $nuttx/tools/testbuild.sh $options -e -Wno-cpp $build
+    $nuttx/tools/testbuild.sh $options -e "-Wno-cpp -Werror" $build
   done
 }