summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorDaniel Black <daniel.black@au.ibm.com>2017-03-17 13:33:21 +1100
committerSergey Vojtovich <svoj@mariadb.org>2017-04-06 11:26:34 -0400
commite130ee552affbb2d3e0c9b25d5c82361fc8a161f (patch)
tree2b31b7e547bac497ea0fbb07525109d76e49bf3a /.travis.yml
parent837fa86cf0291b5c918c812241f8f850cd603a99 (diff)
downloadmariadb-git-e130ee552affbb2d3e0c9b25d5c82361fc8a161f.tar.gz
Travis: remove Mroonga for clang
Mroonga generated far too many warnings (and hence output) for Travis's sensibilities on output log file size. So we just remove the storage engine. Signed-off-by: Daniel Black <daniel.black@au.ibm.com>
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml4
1 files changed, 4 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
index 89c702cc340..530fb6ca247 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -72,6 +72,10 @@ addons:
# libsystemd-daemon-dev # https://github.com/travis-ci/apt-package-whitelist/issues/3882
script:
+# mroonga just generates too many warnings with clang and travis stops the job
+ - if [[ "${TRAVIS_OS_NAME}" == 'linux' && "${CXX}" == 'clang++' ]]; then
+ rm -rf "${TRAVIS_BUILD_DIR}"/storage/mroonga;
+ fi
- source .travis.compiler.sh
- ${MYSQL_BUILD_CC} --version ; ${MYSQL_BUILD_CXX} --version
- cd "${TRAVIS_BUILD_DIR}"