diff options
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 4 |
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}" |