travis: Travis-CI configuration

This commit is contained in:
Joshua Scott 2018-03-29 15:48:46 +01:00
parent 21ccbf0cd7
commit 3d7931a0fc
1 changed files with 35 additions and 0 deletions

35
.travis.yml Normal file
View File

@ -0,0 +1,35 @@
dist: trusty
sudo: required
language:
- cpp
compiler:
- gcc
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-6
- g++-6
- cmake
script:
# Link gcc-6 and g++-6 to their standard commands
- ln -s /usr/bin/gcc-6 /usr/local/bin/gcc
- ln -s /usr/bin/g++-6 /usr/local/bin/g++
# Export CC and CXX to tell cmake which compiler to use
- export CC=/usr/bin/gcc-6
- export CXX=/usr/bin/g++-6
# Check versions of gcc, g++ and cmake
- gcc -v && g++ -v && cmake --version
# Build
- rm -rf build/
- mkdir build
- cd build
- cmake ..
- make
# Testing
- make test