Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavide Beatrici <davidebeatrici@gmail.com>2017-03-18 02:53:29 +0300
committerDavide Beatrici <davidebeatrici@gmail.com>2017-03-18 02:53:29 +0300
commit942ba6d48dfa695d94fc6858a7816326addc4b1c (patch)
tree879fa6693e259bc208af9c31546b0db3ab6a3a6d /scripts/travis-ci
parent69defe5134143b8a6c497786d0eba89700f53e86 (diff)
travis-ci: Remove unneeded "winpaths_custom" CONFIG option
It's a leftover of old tests.
Diffstat (limited to 'scripts/travis-ci')
-rwxr-xr-xscripts/travis-ci/script.bash4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/travis-ci/script.bash b/scripts/travis-ci/script.bash
index 34fe4b6fb..01faa2217 100755
--- a/scripts/travis-ci/script.bash
+++ b/scripts/travis-ci/script.bash
@@ -16,7 +16,7 @@ if [ "${TRAVIS_OS_NAME}" == "linux" ]; then
mv ../ASIOSDK2.3 3rdparty/asio
PATH=$PATH:/usr/lib/mxe/usr/bin
export MUMBLE_PROTOC=/usr/lib/mxe/usr/x86_64-unknown-linux-gnu/bin/protoc
- ${MUMBLE_HOST}.static-qmake-qt5 -recursive -Wall CONFIG+="release tests warnings-as-errors winpaths_custom g15-emulator no-overlay no-bonjour no-elevation no-ice"
+ ${MUMBLE_HOST}.static-qmake-qt5 -recursive -Wall CONFIG+="release tests warnings-as-errors g15-emulator no-overlay no-bonjour no-elevation no-ice"
make -j2
make check TESTRUNNER="wine"
elif [ "${MUMBLE_QT}" == "qt5" ] && [ "${MUMBLE_HOST}" == "x86_64-w64-mingw32" ]; then
@@ -25,7 +25,7 @@ if [ "${TRAVIS_OS_NAME}" == "linux" ]; then
mv ../ASIOSDK2.3 3rdparty/asio
PATH=$PATH:/usr/lib/mxe/usr/bin
export MUMBLE_PROTOC=/usr/lib/mxe/usr/x86_64-unknown-linux-gnu/bin/protoc
- ${MUMBLE_HOST}.static-qmake-qt5 -recursive -Wall CONFIG+="release tests warnings-as-errors winpaths_custom g15-emulator no-overlay no-bonjour no-elevation no-ice"
+ ${MUMBLE_HOST}.static-qmake-qt5 -recursive -Wall CONFIG+="release tests warnings-as-errors g15-emulator no-overlay no-bonjour no-elevation no-ice"
make -j2
make check TESTRUNNER="wine"
else