2016-02-24 21:10:28 +00:00
|
|
|
sudo: required
|
2016-07-14 18:56:33 +00:00
|
|
|
dist: trusty
|
2016-02-24 21:10:28 +00:00
|
|
|
|
|
|
|
language: cpp
|
|
|
|
|
2016-07-14 18:56:33 +00:00
|
|
|
cache:
|
|
|
|
directories:
|
|
|
|
- $HOME/travisCacheDir
|
|
|
|
|
2016-02-24 21:10:28 +00:00
|
|
|
env:
|
2016-07-03 00:00:01 +00:00
|
|
|
matrix:
|
|
|
|
- BUILD_VERSION=""
|
|
|
|
- BUILD_VERSION="disable_register_custom_scheme"
|
|
|
|
- BUILD_VERSION="disable_crash_reports"
|
|
|
|
- BUILD_VERSION="disable_network_proxy"
|
|
|
|
- BUILD_VERSION="disable_desktop_file_generation"
|
2017-08-07 11:57:34 +00:00
|
|
|
- BUILD_VERSION="disable_gtk_integration"
|
2016-07-03 00:00:01 +00:00
|
|
|
|
|
|
|
matrix:
|
|
|
|
fast_finish: true
|
2016-02-24 21:10:28 +00:00
|
|
|
|
2016-07-14 18:56:33 +00:00
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
sources:
|
|
|
|
- ubuntu-toolchain-r-test
|
|
|
|
packages:
|
|
|
|
- bison
|
|
|
|
- build-essential
|
|
|
|
- cmake
|
|
|
|
- devscripts
|
|
|
|
- dpatch
|
|
|
|
- equivs
|
|
|
|
- fakeroot
|
2019-05-15 11:19:26 +00:00
|
|
|
- g++-8
|
|
|
|
- gcc-8
|
2016-07-14 18:56:33 +00:00
|
|
|
- git
|
|
|
|
- gnome-common
|
|
|
|
- gobject-introspection
|
|
|
|
- gtk-doc-tools
|
|
|
|
- libappindicator-dev
|
|
|
|
- libasound2-dev
|
|
|
|
- libdbusmenu-glib-dev
|
|
|
|
- liblzma-dev
|
|
|
|
- libopus-dev
|
|
|
|
- libpulse-dev
|
2019-11-13 14:27:24 +00:00
|
|
|
- libenchant-dev
|
2016-07-14 18:56:33 +00:00
|
|
|
- libssl-dev
|
2018-12-07 17:59:14 +00:00
|
|
|
- libdee-dev
|
2016-07-14 18:56:33 +00:00
|
|
|
- libva-dev
|
2017-01-05 13:46:36 +00:00
|
|
|
- libvdpau-dev
|
2016-07-14 18:56:33 +00:00
|
|
|
- libxcb-xkb-dev
|
|
|
|
- libxkbcommon-dev
|
2019-11-12 12:26:14 +00:00
|
|
|
- libatspi2.0-dev
|
2016-07-14 18:56:33 +00:00
|
|
|
- lintian
|
|
|
|
- quilt
|
|
|
|
- valac
|
|
|
|
- xutils-dev
|
|
|
|
- yasm
|
2016-02-24 21:10:28 +00:00
|
|
|
|
2016-03-30 19:42:16 +00:00
|
|
|
before_install:
|
2019-05-15 11:19:26 +00:00
|
|
|
- export CXX="g++-8" CC="gcc-8"
|
|
|
|
- sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-8 60 --slave /usr/bin/g++ g++ /usr/bin/g++-8
|
2016-07-14 18:56:33 +00:00
|
|
|
- sudo update-alternatives --config gcc
|
|
|
|
- g++ --version
|
2016-03-30 19:42:16 +00:00
|
|
|
|
2016-02-24 21:10:28 +00:00
|
|
|
script:
|
2016-07-14 18:56:33 +00:00
|
|
|
- .travis/build.sh
|