mirror of https://github.com/procxx/kepka.git
70 lines
1.2 KiB
YAML
70 lines
1.2 KiB
YAML
sudo: required
|
|
dist: trusty
|
|
|
|
language: cpp
|
|
|
|
cache:
|
|
directories:
|
|
- $HOME/travisCacheDir
|
|
|
|
env:
|
|
matrix:
|
|
- BUILD_VERSION=""
|
|
|
|
matrix:
|
|
fast_finish: true
|
|
|
|
addons:
|
|
apt:
|
|
sources:
|
|
- ubuntu-toolchain-r-test
|
|
packages:
|
|
- bison
|
|
- build-essential
|
|
- cmake
|
|
- devscripts
|
|
- dpatch
|
|
- equivs
|
|
- fakeroot
|
|
- g++-7
|
|
- gcc-7
|
|
- git
|
|
- libappindicator-dev
|
|
- libasound2-dev
|
|
- libdbusmenu-glib-dev
|
|
- liblzma-dev
|
|
- libopus-dev
|
|
- libpulse-dev
|
|
- libssl-dev
|
|
- libunity-dev
|
|
- libva-dev
|
|
- libvdpau-dev
|
|
- libxcb-xkb-dev
|
|
- libxkbcommon-dev
|
|
- xutils-dev
|
|
- yasm
|
|
- libavfilter-dev
|
|
- libavutil-dev
|
|
- libavformat-dev
|
|
- libavcodec-dev
|
|
- libopenal-data
|
|
- libopenal-dev
|
|
- libopenal1
|
|
- libopenal1-dbg
|
|
- qtsystems5-private-dev
|
|
- qttools5-private-dev
|
|
- qtbase5-private-dev
|
|
- libalut-dev
|
|
|
|
before_install:
|
|
- export CXX="g++-7" CC="gcc-7"
|
|
- sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-7 70 --slave /usr/bin/g++ g++ /usr/bin/g++-7
|
|
- sudo update-alternatives --config gcc
|
|
- g++ --version
|
|
|
|
before_script:
|
|
- cmake .
|
|
|
|
script:
|
|
- make -j2
|