aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThiago de Arruda <tpadilha84@gmail.com>2014-10-22 10:12:08 -0300
committerThiago de Arruda <tpadilha84@gmail.com>2014-10-22 11:26:36 -0300
commit97f0c1eda19f5a2f8c13ba2cb1c8a1e60ed52c2d (patch)
treed532c21e933c6dbb3b4584d11864629c3b748bc0
parentcdfdfae3222022c68d09f94b25f37096b0bc8464 (diff)
downloadrneovim-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.sh2
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