Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 22 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,29 @@
language: cpp
compiler:
- gcc
- clang
- clang
sudo: false
cache: ccache
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- fglrx=2:8.960-0ubuntu1
- opencl-headers
- libboost-chrono1.48-dev
- libboost-date-time1.48-dev
- libboost-test1.48-dev
- libboost-system1.48-dev
- libboost-filesystem1.48-dev
- libboost-timer1.48-dev
- libboost-program-options1.48-dev
- libboost-thread1.48-dev
- python-yaml
- lcov
- libopencv-dev
- g++-4.8
before_install:
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- sudo apt-get update -qq
- sudo apt-get install -qq fglrx=2:8.960-0ubuntu1 opencl-headers libboost-chrono1.48-dev libboost-date-time1.48-dev libboost-test1.48-dev libboost-system1.48-dev libboost-filesystem1.48-dev libboost-timer1.48-dev libboost-program-options1.48-dev libboost-thread1.48-dev python-yaml lcov libopencv-dev g++-4.8
- gem install coveralls-lcov
- if [ "$CXX" = "g++" ]; then export CXX="g++-4.8" CC="gcc-4.8"; fi
script:
Expand Down