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
AgeCommit message (Collapse)Author
2019-03-10travis-ci: switch to Xenial for Qt 5 builds, improve matrix, update MXE mirrorDavide Beatrici
2019-01-25Auto-update LICENSE.header in source filesDavide Beatrici
2018-07-02Travis CI: install "libjack-jackd2-dev" for Linux buildsDavide Beatrici
2018-06-15travis-ci: Fix MacOS build for new imagesDavide Beatrici
We install the protobuf package via brew, which depends on "python@2". The build image upgraded the installed "python", and now "python@2" conflicts with it when trying to create symlinks. We don’t use the symlinked "python" installed by default in the image, so we unlink it to allow the "python@2" package to be installed without conflict.
2018-01-20Merge PR #3313: scripts/travis-ci: bump apt timeout in before_install.bash.Mikkel Krautz
2018-01-20scripts/travis-ci: fix MUMBLE_NO_PCH checks in script.bash.Mikkel Krautz
Change our checks for MUMBLE_NO_PCH to use string comparisons instead of numerical comparisons. When MUMBLE_NO_PCH is not set, the numerical equivalent check fails because nothing is on the left-hand side of the -eq operator. Fixes mumble-voip/mumble#3314
2018-01-20scripts/travis-ci: bump apt timeout in before_install.bash.Mikkel Krautz
After switching to using a mirror of MXE on dl.mumble.info we've begun running into timeouts from apt on Travis CI. For example: E: Failed to fetch https://dl.mumble.info/mirror/pkg.mxe.cc/repos/apt/debian/pool/main/m/mxe-x86-64-unknown-linux-gnu-cmake/mxe-x86-64-unknown-linux-gnu-cmake_3.5.2-20170208_amd64.deb Operation too slow. Less than 10 bytes/sec transferred the last 10 seconds The error is from cURL, and it means that the options CURLOPT_LOW_SPEED_LIMIT and CURLOPT_LOW_SPEED_TIME are set quite low. (See https://github.com/curl/curl/blob/bb0ffcc36fd46298e02f943b255ee5d6553c06dc/lib/speedcheck.c) To fix this, we set the Acquire::http::Timeout option to 120 seconds. This causes apt's https transport to set CURLOPT_LOW_SPEED_TIME to 120. (See https://github.com/Debian/apt/blob/debian/wheezy/methods/https.cc#L224-L230) Fixes mumble-voip/mumble#3312
2018-01-14scripts/travis-ci: use our own (Fastly-fronted) mirror of pkg.mxe.info.Mikkel Krautz
2018-01-02Auto-update LICENSE.header in source files.Mikkel Krautz
2017-10-15Fix travis OSX buildJan Klass
Using brew to install now fails because of an incompatible ruby version. Update brew before installing a package to work around this. https://github.com/travis-ci/travis-ci/issues/8552
2017-03-29travis-ci: add macOS target.Mikkel Krautz
This commit adds a Homebrew-based macOS build to our Travis CI build matrix. It also cleans up the exising build matrix such such that Linux builds are built only on Linux hosts, and macOS builds are only built on macOS hosts.
2017-03-19travis-ci: add a no-pch build to the Travis matrix.Mikkel Krautz
It's convenient to have a proof-build that checks whether our no-pch build works, to keep it working.
2017-03-18travis-ci: Remove unneeded "winpaths_custom" CONFIG optionDavide Beatrici
It's a leftover of old tests.
2017-03-17travis-ci: Execute "make check" using WineDavide Beatrici
2017-03-17travis-ci: Use MinGW build envsMikkel Krautz
2017-02-28Add Qt 5 Trusty build to .travis.yml.Mikkel Krautz