Converted to a build matrix for testing and release

Signed-off-by: Jacob Torrey <torreyj@ainfosec.com>
This commit is contained in:
Jacob Torrey 2016-08-22 13:56:59 -06:00
parent 342dbfb705
commit 7351a1174b
1 changed files with 87 additions and 42 deletions

View File

@ -1,10 +1,17 @@
sudo: required sudo: required
dist: trusty dist: trusty
language: cpp language: cpp
compiler:
- gcc matrix:
- clang include:
addons:
#
# Coveralls.io
#
- os: linux
compiler:
- gcc
addons:
apt: apt:
packages: packages:
- build-essential - build-essential
@ -24,22 +31,60 @@ addons:
- libunwind8-dev - libunwind8-dev
sources: sources:
- ubuntu-toolchain-r-test - ubuntu-toolchain-r-test
before_install: before_install:
- sudo add-apt-repository -y ppa:kojoley/boost - sudo add-apt-repository -y ppa:kojoley/boost
- sudo apt-get -q update - sudo apt-get -q update
- pip install --user cpp-coveralls - pip install --user cpp-coveralls
install: install:
- sudo apt-get -y install libboost-{chrono,program-options,date-time,thread,system,filesystem,regex,serialization}1.58{-dev,.0} - sudo apt-get -y install libboost-{chrono,program-options,date-time,thread,system,filesystem,regex,serialization}1.58{-dev,.0}
script: script:
- make -j2 && HAVE_DOT=YES doxygen Doxyfile - ./configure --enable-gcov && make && make check
#- ./configure --enable-gcov && make && make check after_success:
notifications: - coveralls --exclude external --exclude tests -e cmake -e contrib -e translations -e utils --gcov-options '\-lp'
email: false
irc: #
on_success: change # Monero release-all
on_failure: change #
channels: - os: linux
- "chat.freenode.net#monero-dev" compiler:
nick: monero - gcc
template: - clang
- "%{result} | %{repository}#%{build_number} (%{commit} : %{author}) | Build details : %{build_url}" addons:
apt:
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
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
#notifications:
# email: false
# irc:
# on_success: change
# on_failure: change
# channels:
# - "chat.freenode.net#monero-dev"
# nick: monero
# template:
# - "%{result} | %{repository}#%{build_number} (%{commit} : %{author}) | Build details : %{build_url}"