3
0
Fork 0

Merge pull request #122 from kiwix/gcc5

Compile using gcc-5 on native ubuntu.
better_search_tool
Matthieu Gautier 8 years ago committed by GitHub
commit aa9647e88c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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:
global:
- MATRIX_EVAL="CC=gcc-5 && CXX=g++-5"
matrix:
- PLATFORM="native_static" - PLATFORM="native_static"
- PLATFORM="native_dyn" - PLATFORM="native_dyn"
- PLATFORM="win32_static" - PLATFORM="win32_static"
- PLATFORM="win32_dyn" - PLATFORM="win32_dyn"
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-5

Loading…
Cancel
Save