|
|
@ -2,10 +2,22 @@ language: cpp
|
|
|
|
dist: trusty
|
|
|
|
dist: trusty
|
|
|
|
sudo: required
|
|
|
|
sudo: required
|
|
|
|
cache: ccache
|
|
|
|
cache: ccache
|
|
|
|
|
|
|
|
before_install:
|
|
|
|
|
|
|
|
- eval "${MATRIX_EVAL}"
|
|
|
|
|
|
|
|
- ${CXX} --version
|
|
|
|
install: travis/install_deps.sh
|
|
|
|
install: travis/install_deps.sh
|
|
|
|
script: travis/compile.sh
|
|
|
|
script: travis/compile.sh
|
|
|
|
env:
|
|
|
|
env:
|
|
|
|
- PLATFORM="native_static"
|
|
|
|
global:
|
|
|
|
- PLATFORM="native_dyn"
|
|
|
|
- MATRIX_EVAL="CC=gcc-5 && CXX=g++-5"
|
|
|
|
- PLATFORM="win32_static"
|
|
|
|
matrix:
|
|
|
|
- PLATFORM="win32_dyn"
|
|
|
|
- PLATFORM="native_static"
|
|
|
|
|
|
|
|
- PLATFORM="native_dyn"
|
|
|
|
|
|
|
|
- PLATFORM="win32_static"
|
|
|
|
|
|
|
|
- PLATFORM="win32_dyn"
|
|
|
|
|
|
|
|
addons:
|
|
|
|
|
|
|
|
apt:
|
|
|
|
|
|
|
|
sources:
|
|
|
|
|
|
|
|
- ubuntu-toolchain-r-test
|
|
|
|
|
|
|
|
packages:
|
|
|
|
|
|
|
|
- g++-5
|
|
|
|