diff options
author | Thiago de Arruda <tpadilha84@gmail.com> | 2014-10-22 10:12:08 -0300 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-10-22 11:26:36 -0300 |
commit | 97f0c1eda19f5a2f8c13ba2cb1c8a1e60ed52c2d (patch) | |
tree | d532c21e933c6dbb3b4584d11864629c3b748bc0 | |
parent | cdfdfae3222022c68d09f94b25f37096b0bc8464 (diff) | |
download | rneovim-97f0c1eda19f5a2f8c13ba2cb1c8a1e60ed52c2d.tar.gz rneovim-97f0c1eda19f5a2f8c13ba2cb1c8a1e60ed52c2d.tar.bz2 rneovim-97f0c1eda19f5a2f8c13ba2cb1c8a1e60ed52c2d.zip |
travis: Force verification of DLOG macros
We use INFO as the default log level, which leaves code inside DLOG macros
unverified(currently it has compilation errors).
Decrease the log level on travis builds for automatic verification in PRs.
-rw-r--r-- | .ci/common.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.ci/common.sh b/.ci/common.sh index d84a306885..76faf595c8 100644 --- a/.ci/common.sh +++ b/.ci/common.sh @@ -67,3 +67,5 @@ install_prebuilt_deps sudo apt-mark hold oracle-java7-installer oracle-java8-installer sudo apt-get update + +export CFLAGS='-DMIN_LOG_LEVEL=0' # force verification of DLOG macros |