2017-02-05 22:26:52 +00:00
|
|
|
|
2017-11-08 14:43:38 +00:00
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- env: SUBSURFACE_PLATFORM='linux'
|
|
|
|
os: linux
|
|
|
|
dist: trusty
|
|
|
|
sudo: required
|
|
|
|
language: c++
|
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
packages:
|
2017-02-05 22:26:52 +00:00
|
|
|
- git
|
|
|
|
- g++
|
|
|
|
- make
|
|
|
|
- autoconf
|
|
|
|
- automake
|
|
|
|
- libtool
|
|
|
|
- cmake
|
|
|
|
- pkg-config
|
|
|
|
- libxml2-dev
|
|
|
|
- libxslt1-dev
|
|
|
|
- libzip-dev
|
|
|
|
- libsqlite3-dev
|
|
|
|
- libusb-1.0-0-dev
|
|
|
|
- libssl-dev
|
|
|
|
- libssh2-1-dev
|
|
|
|
- libcurl4-openssl-dev
|
|
|
|
# Not a subsurface dependency, but a Qt dependency
|
|
|
|
- mesa-common-dev
|
2017-11-09 20:48:57 +00:00
|
|
|
- libqt5gui5
|
|
|
|
- libxcb-xinerama0
|
2017-11-05 21:28:52 +00:00
|
|
|
# Not a subsurface dependency, but a QtMultimedia/libdeclarative_multimedia.so dependency
|
|
|
|
- libpulse-mainloop-glib0
|
2017-11-05 23:24:33 +00:00
|
|
|
# Not a subsurface dependency, but a QtWebKit dependency
|
|
|
|
- libhyphen-dev
|
|
|
|
- libicu52
|
2017-02-05 22:26:52 +00:00
|
|
|
|
|
|
|
before_install:
|
2017-11-08 20:26:15 +00:00
|
|
|
- source ${TRAVIS_BUILD_DIR}/scripts/${SUBSURFACE_PLATFORM}/before_install.sh
|
2017-02-07 10:57:02 +00:00
|
|
|
|
2017-02-05 22:26:52 +00:00
|
|
|
script:
|
2017-11-08 20:26:15 +00:00
|
|
|
- source ${TRAVIS_BUILD_DIR}/scripts/${SUBSURFACE_PLATFORM}/travisbuild.sh
|
2017-11-06 04:24:22 +00:00
|
|
|
|
|
|
|
after_success:
|
2017-11-08 20:26:15 +00:00
|
|
|
- source ${TRAVIS_BUILD_DIR}/scripts/${SUBSURFACE_PLATFORM}/after_success.sh
|
2017-11-06 04:07:55 +00:00
|
|
|
|
2017-11-10 18:34:44 +00:00
|
|
|
branches:
|
|
|
|
except:
|
|
|
|
- # Do not build tags that we create when we upload to GitHub Releases
|
|
|
|
- /^(?i:continuous)/
|