Add .travis.yml
This commit is contained in:
parent
0a0d41e9a5
commit
51ba34c586
1 changed files with 18 additions and 0 deletions
18
.travis.yml
Normal file
18
.travis.yml
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
language: c++
|
||||
|
||||
git:
|
||||
depth: 1
|
||||
|
||||
dist: trusty
|
||||
|
||||
sudo: true
|
||||
|
||||
install:
|
||||
- echo "deb http://de.archive.ubuntu.com/ubuntu xenial main restricted universe multiverse" | sudo tee -a /etc/apt/sources.list
|
||||
- sudo apt-get update
|
||||
- sudo apt-get install --allow-unauthenticated g++ libboost-all-dev cmake libreadline-dev libssl-dev autoconf
|
||||
|
||||
script:
|
||||
- cmake -DCMAKE_BUILD_TYPE=Debug -DBoost_USE_STATIC_LIBS=OFF .
|
||||
- make -j 2
|
||||
- tests/all_test
|
||||
Loading…
Reference in a new issue