TGUI/.travis.yml

54 lines
937 B
YAML
Raw Normal View History

sudo: false
language: cpp
git:
depth: 1
os: linux
compiler: g++-6
env: COMPILER=g++-6
cache:
directories:
- $HOME/SFML_LINUX
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-6
2016-03-08 14:19:59 -08:00
- valgrind
- libfreetype6-dev
- libjpeg-dev
- libx11-dev
- libxrandr-dev
- libxcb1-dev
- libx11-xcb-dev
- libxcb-randr0-dev
- libxcb-image0-dev
- libgl1-mesa-dev
- libflac-dev
- libogg-dev
- libvorbis-dev
- libvorbisenc2
- libvorbisfile3
- libopenal-dev
- libpthread-stubs0-dev
- libglew-dev
- libgpgme11-dev
- libsndfile1-dev
- libudev-dev
script:
2016-03-01 11:59:29 -08:00
- CXX=$COMPILER;
- chmod +x tests/travis_linux_tests.sh
- tests/travis_linux_tests.sh
after_success:
-
if [[ $TRAVIS_OS_NAME == 'linux' && $CXX == g++-6 ]]; then
bash <(curl -s https://codecov.io/bash) -x gcov-6 -a "-s /home/travis/build/texus/TGUI -pr"
fi