blob: 235b1b057cb1221b938ef0edd906b4c7bb643f4f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
sudo: true
language: c++
cache: ccache
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- ubuntu-sdk-team
- sourceline: "ppa:rjvbertin/kde-git"
- sourceline: "ppa:beineri/opt-qt571-trusty"
packages:
- g++-6
- cmake
- extra-cmake-modules
- ninja-build
- qt57-meat-full
- liblmdb-dev
before_script:
- QTDIR="/opt/qt55"
- PATH="$QTDIR/bin:$PATH"
- find /opt -name 'qt*-env.sh' -print0 | xargs -0 source
- ./.travis/install-kasync.sh
- ./.travis/install-flatbuffers.sh
|