2016-07-12 17:33:57 -06:00
|
|
|
sudo: required
|
|
|
|
dist: trusty
|
|
|
|
language: cpp
|
2016-08-22 13:56:59 -06:00
|
|
|
|
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
|
|
|
|
#
|
|
|
|
# Coveralls.io
|
|
|
|
#
|
|
|
|
- os: linux
|
2016-08-22 18:11:36 -06:00
|
|
|
compiler: gcc
|
2016-08-22 13:56:59 -06:00
|
|
|
addons:
|
|
|
|
apt:
|
2016-08-22 14:33:32 -06:00
|
|
|
packages:
|
|
|
|
- build-essential
|
|
|
|
- cmake
|
|
|
|
- doxygen
|
|
|
|
- g++
|
|
|
|
- gcc
|
|
|
|
- clang
|
|
|
|
- graphviz
|
|
|
|
- libdb++-dev
|
|
|
|
- libdb-dev
|
|
|
|
- libgtest-dev
|
|
|
|
- libminiupnpc-dev
|
|
|
|
- libssl-dev
|
|
|
|
- libssl1.0.0
|
|
|
|
- libunbound-dev
|
|
|
|
- libunwind8-dev
|
|
|
|
sources:
|
|
|
|
- ubuntu-toolchain-r-test
|
2016-08-22 13:56:59 -06:00
|
|
|
before_install:
|
|
|
|
- sudo add-apt-repository -y ppa:kojoley/boost
|
|
|
|
- sudo apt-get -q update
|
|
|
|
- pip install --user cpp-coveralls
|
|
|
|
install:
|
|
|
|
- sudo apt-get -y install libboost-{chrono,program-options,date-time,thread,system,filesystem,regex,serialization}1.58{-dev,.0}
|
2016-08-29 13:37:40 -06:00
|
|
|
env:
|
|
|
|
# exclude long-running and failing tests (#895)
|
|
|
|
- ARGS=" -E 'coretests|libwallet_api_tests' "
|
2016-08-22 13:56:59 -06:00
|
|
|
script:
|
2016-08-29 12:23:57 -06:00
|
|
|
- make -j2 coverage
|
2016-08-22 13:56:59 -06:00
|
|
|
after_success:
|
2016-08-22 21:10:33 -06:00
|
|
|
- travis_wait coveralls -e external -e tests -e cmake -e contrib -e translations -e utils --gcov-options '\-lp' &> /dev/null
|
2016-08-22 13:56:59 -06:00
|
|
|
|
|
|
|
#
|
2016-08-22 18:11:36 -06:00
|
|
|
# Monero release-all (gcc)
|
2016-08-22 13:56:59 -06:00
|
|
|
#
|
|
|
|
- os: linux
|
2016-08-22 18:11:36 -06:00
|
|
|
compiler: gcc
|
2016-08-22 13:56:59 -06:00
|
|
|
addons:
|
|
|
|
apt:
|
2016-08-22 14:33:32 -06:00
|
|
|
packages:
|
|
|
|
- build-essential
|
|
|
|
- cmake
|
|
|
|
- doxygen
|
|
|
|
- g++
|
|
|
|
- gcc
|
|
|
|
- clang
|
|
|
|
- graphviz
|
|
|
|
- libdb++-dev
|
|
|
|
- libdb-dev
|
|
|
|
- libgtest-dev
|
|
|
|
- libminiupnpc-dev
|
|
|
|
- libssl-dev
|
|
|
|
- libssl1.0.0
|
|
|
|
- libunbound-dev
|
|
|
|
- libunwind8-dev
|
|
|
|
sources:
|
|
|
|
- ubuntu-toolchain-r-test
|
2016-08-22 13:56:59 -06:00
|
|
|
before_install:
|
|
|
|
- sudo add-apt-repository -y ppa:kojoley/boost
|
|
|
|
- sudo apt-get -q update
|
|
|
|
install:
|
|
|
|
- sudo apt-get -y install libboost-{chrono,program-options,date-time,thread,system,filesystem,regex,serialization}1.58{-dev,.0}
|
|
|
|
script:
|
|
|
|
- make -j2 && HAVE_DOT=YES doxygen Doxyfile
|
|
|
|
|
2016-08-22 18:11:36 -06:00
|
|
|
#
|
|
|
|
# Monero release-all (clang)
|
|
|
|
#
|
|
|
|
- os: linux
|
|
|
|
compiler: clang
|
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
packages:
|
|
|
|
- build-essential
|
|
|
|
- cmake
|
|
|
|
- doxygen
|
|
|
|
- clang
|
|
|
|
- graphviz
|
|
|
|
- libdb++-dev
|
|
|
|
- libdb-dev
|
|
|
|
- libgtest-dev
|
|
|
|
- libminiupnpc-dev
|
|
|
|
- libssl-dev
|
|
|
|
- libssl1.0.0
|
|
|
|
- libunbound-dev
|
|
|
|
- libunwind8-dev
|
|
|
|
sources:
|
|
|
|
- ubuntu-toolchain-r-test
|
|
|
|
before_install:
|
|
|
|
- sudo add-apt-repository -y ppa:kojoley/boost
|
|
|
|
- sudo apt-get -q update
|
|
|
|
install:
|
|
|
|
- sudo apt-get -y install libboost-{chrono,program-options,date-time,thread,system,filesystem,regex,serialization}1.58{-dev,.0}
|
|
|
|
script:
|
|
|
|
- make -j2 && HAVE_DOT=YES doxygen Doxyfile
|
|
|
|
|
2016-08-26 13:46:29 -06:00
|
|
|
notifications:
|
|
|
|
email: false
|
|
|
|
irc:
|
|
|
|
on_success: change
|
|
|
|
on_failure: change
|
|
|
|
channels:
|
2016-08-27 12:09:31 -06:00
|
|
|
- "chat.freenode.net#monero-bots"
|
2016-08-26 13:46:29 -06:00
|
|
|
nick: monero
|
|
|
|
template:
|
|
|
|
- "%{result} | %{repository}#%{build_number} (%{commit} : %{author}) | Build details : %{build_url}"
|