2015-10-23 16:51:55 -04:00
|
|
|
sudo: required
|
2015-11-18 15:43:04 -05:00
|
|
|
#dist: trusty
|
2015-05-08 21:57:34 -04:00
|
|
|
language: cpp
|
|
|
|
|
2015-10-23 16:15:30 -04:00
|
|
|
before_install:
|
2015-06-18 13:34:54 -04:00
|
|
|
# Define TRAVIS variable for workarounds
|
|
|
|
- export CXXFLAGS="$CXXFLAGS -DTRAVIS"
|
2015-05-08 21:57:34 -04:00
|
|
|
|
2015-10-23 16:51:55 -04:00
|
|
|
install:
|
|
|
|
- if [ "$CXX" = "g++" ]; then sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 98; fi
|
2015-06-22 09:19:38 -04:00
|
|
|
|
2015-05-08 22:00:27 -04:00
|
|
|
# Build with both gcc and clang
|
2015-05-08 21:57:34 -04:00
|
|
|
compiler:
|
2015-05-08 22:03:56 -04:00
|
|
|
- gcc
|
|
|
|
- clang
|
2015-10-23 16:15:30 -04:00
|
|
|
|
2015-06-22 09:38:48 -04:00
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
sources:
|
|
|
|
- ubuntu-toolchain-r-test
|
|
|
|
packages:
|
2015-10-29 09:47:56 -04:00
|
|
|
- cmake
|
2015-06-22 09:38:48 -04:00
|
|
|
- gcc-4.8
|
|
|
|
- g++-4.8
|
|
|
|
- clang
|
2015-11-18 15:43:04 -05:00
|
|
|
- libwxgtk3.0-dev
|
2015-10-29 14:09:27 -04:00
|
|
|
- libssh2-dev
|
2015-05-08 22:03:56 -04:00
|
|
|
|
2015-06-19 15:54:18 -04:00
|
|
|
script: make clean run-tests
|