diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2019-12-12 21:32:13 +0300 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2019-12-12 21:32:13 +0300 |
commit | 8782ae93ddcf6925eee9189aa07441c822e3b9ba (patch) | |
tree | 76a39284a855ed13bc8b056a9074dfdfcba5fdaa /.travis.yml | |
parent | 38f45066a2304935550e2c5b6be21a9744f66bf1 (diff) | |
download | libquotient-8782ae93ddcf6925eee9189aa07441c822e3b9ba.tar.gz libquotient-8782ae93ddcf6925eee9189aa07441c822e3b9ba.zip |
.travis.yml: use correct environment variables
It should be TEST_USER and TEST_PWD, not QMC_* legacy stuff.
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 3f2759bb..b1b3ef95 100644 --- a/.travis.yml +++ b/.travis.yml @@ -72,7 +72,7 @@ script: - qmake quotest.pro "CONFIG += debug" "CONFIG -= app_bundle" "QMAKE_CC = $CC" "QMAKE_CXX = $CXX" "INCLUDEPATH += olm/include" "LIBS += -Lbuild/lib" "LIBS += -Lolm/build" - make all # Run the qmake-compiled quotest under valgrind -- if [ "$TEST_USER" != "" ]; then LD_LIBRARY_PATH="olm/build" $VALGRIND ./quotest "$QMC_TEST_USER" "$QMC_TEST_PWD" quotest-travis '#quotest:matrix.org' "Travis CI job $TRAVIS_JOB_NUMBER"; fi +- if [ "$TEST_USER" != "" ]; then LD_LIBRARY_PATH="olm/build" $VALGRIND ./quotest "$TEST_USER" "$TEST_PWD" quotest-travis '#quotest:matrix.org' "Travis CI job $TRAVIS_JOB_NUMBER"; fi notifications: webhooks: |