mirror of https://github.com/SeanOMik/libki.git
travis: Travis-CI configuration
This commit is contained in:
parent
21ccbf0cd7
commit
3d7931a0fc
|
@ -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
|
Loading…
Reference in New Issue