Travis-CI: implement first-draft configuration.
This commit is contained in:
parent
18dd507024
commit
b332da3e9a
1 changed files with 28 additions and 0 deletions
28
.travis.yml
Normal file
28
.travis.yml
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
sudo: required
|
||||||
|
dist: trusty
|
||||||
|
language: cpp
|
||||||
|
compiler:
|
||||||
|
- gcc
|
||||||
|
addons:
|
||||||
|
apt:
|
||||||
|
packages:
|
||||||
|
- build-essential
|
||||||
|
- cmake
|
||||||
|
- doxygen
|
||||||
|
- g++
|
||||||
|
- gcc
|
||||||
|
- graphviz
|
||||||
|
- libboost1.55-all-dev
|
||||||
|
- libdb++-dev
|
||||||
|
- libdb-dev
|
||||||
|
- libgtest-dev
|
||||||
|
- libminiupnpc-dev
|
||||||
|
- libssl-dev
|
||||||
|
- libssl1.0.0
|
||||||
|
- libunbound-dev
|
||||||
|
- libunwind8-dev
|
||||||
|
#sources:
|
||||||
|
#- ubuntu-toolchain-r-test
|
||||||
|
script: make -j2 && make -j2 release-test && HAVE_DOT=YES doxygen Doxyfile
|
||||||
|
notifications:
|
||||||
|
email: false
|
Loading…
Reference in a new issue