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:
authorStefan Hacker <mail@hacst.net>2017-02-12 04:28:06 +0300
committerStefan Hacker <mail@hacst.net>2017-02-12 15:46:58 +0300
commitd9ba3db27ca57a8d99070492f2a194e410f35b9b (patch)
treef403bb5ba1c69481e3a30935e22e4df6d885e821 /.travis.yml
parent43109d10eaa3a24287bcae27a20de0d309fe8a6f (diff)
Add travis configuration for linux proof builds
Travis builds with Ubuntu 12.04 so this is more of a legacy compilation test with qt4. Should still be helpful.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml10
1 files changed, 10 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 000000000..c597bea7e
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,10 @@
+sudo: required # Required for apt-get build-dep
+language: cpp
+compiler: gcc
+
+before_install:
+ - sudo apt-get -qq update
+ - sudo apt-get build-dep -qq mumble
+
+script:
+ - qmake CONFIG+="release g15-emulator qt4-legacy-compat" -recursive && make -j2