diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2019-07-11 08:02:22 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2019-07-11 08:08:00 +0900 |
commit | 5b37e15d6a57d3b689c88f5cfce7afea9787a034 (patch) | |
tree | f7a1e4a10e46c3f34092c1456efd7d18999affe5 | |
parent | ecda3a007ed504d3c6b64b7895082107222d62f7 (diff) | |
download | libquotient-5b37e15d6a57d3b689c88f5cfce7afea9787a034.tar.gz libquotient-5b37e15d6a57d3b689c88f5cfce7afea9787a034.zip |
.travis.yml: temporarily disabling Valgrind because it's broken
-rw-r--r-- | .travis.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index d859c69c..d02c5058 100644 --- a/.travis.yml +++ b/.travis.yml @@ -40,7 +40,9 @@ matrix: before_install: - eval "${ENV_EVAL}" -- if [ "$TRAVIS_OS_NAME" = "linux" ]; then USE_NINJA="-GNinja"; VALGRIND="valgrind $VALGRIND_OPTIONS"; . /opt/qt59/bin/qt59-env.sh; fi +- if [ "$TRAVIS_OS_NAME" = "linux" ]; then USE_NINJA="-GNinja"; . /opt/qt59/bin/qt59-env.sh; fi +# Switching off temporarily due to broken Valgrind being installed in xenial container. +#- if [ "$TRAVIS_OS_NAME" = "linux" ]; then VALGRIND="valgrind $VALGRIND_OPTIONS"; fi install: - pushd 3rdparty/libQtOlm |