diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2019-07-07 16:58:02 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2019-07-07 16:58:02 +0900 |
commit | 112632e27fa26fcfbb49886d21704f398cd6a928 (patch) | |
tree | bfbaccc53ba95d1dd79f27b9111276974d5f0479 /.travis.yml | |
parent | 3d2b359b6766c008ba28f16737a9faee79043d07 (diff) | |
download | libquotient-112632e27fa26fcfbb49886d21704f398cd6a928.tar.gz libquotient-112632e27fa26fcfbb49886d21704f398cd6a928.zip |
.travis.yml: pass LD_LIBRARY_PATH so that the example could find olm
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 79d5d0e7..de3f62fd 100644 --- a/.travis.yml +++ b/.travis.yml @@ -61,7 +61,7 @@ script: - qmake qmc-example.pro "CONFIG += debug" "CONFIG -= app_bundle" "QMAKE_CC = $CC" "QMAKE_CXX = $CXX" "INCLUDEPATH += 3rdparty/libQtOlm/olm/include" "LIBS += -Lbuild/lib" - make all # Run the qmake-compiled qmc-example under valgrind -- if [ "$QMC_TEST_USER" != "" ]; then $VALGRIND ./qmc-example "$QMC_TEST_USER" "$QMC_TEST_PWD" qmc-example-travis '#qmc-test:matrix.org' "Travis CI job $TRAVIS_JOB_NUMBER"; fi +- if [ "$QMC_TEST_USER" != "" ]; then $VALGRIND LD_LIBRARY_PATH="build/lib" ./qmc-example "$QMC_TEST_USER" "$QMC_TEST_PWD" qmc-example-travis '#qmc-test:matrix.org' "Travis CI job $TRAVIS_JOB_NUMBER"; fi notifications: webhooks: |