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-31 17:14:42 +0900 |
commit | 0df1cdcf40fd639f039f0c0e7165c8c40f6efd79 (patch) | |
tree | 2c6ab33510f6f40bfbb5efd70d3e08045ab55dbb | |
parent | f31104a7a65e21504a921da9710fe193b0e41904 (diff) | |
download | libquotient-0df1cdcf40fd639f039f0c0e7165c8c40f6efd79.tar.gz libquotient-0df1cdcf40fd639f039f0c0e7165c8c40f6efd79.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 |