Converted to a build matrix for testing and release

Signed-off-by: Jacob Torrey <torreyj@ainfosec.com>
pull/95/head
Jacob Torrey 8 years ago
parent 342dbfb705
commit 7351a1174b

@ -1,9 +1,16 @@
sudo: required sudo: required
dist: trusty dist: trusty
language: cpp language: cpp
matrix:
include:
#
# Coveralls.io
#
- os: linux
compiler: compiler:
- gcc - gcc
- clang
addons: addons:
apt: apt:
packages: packages:
@ -30,16 +37,54 @@ before_install:
- 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:
- ./configure --enable-gcov && make && make check
after_success:
- coveralls --exclude external --exclude tests -e cmake -e contrib -e translations -e utils --gcov-options '\-lp'
#
# Monero release-all
#
- os: linux
compiler:
- gcc
- clang
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: script:
- make -j2 && HAVE_DOT=YES doxygen Doxyfile - make -j2 && HAVE_DOT=YES doxygen Doxyfile
#- ./configure --enable-gcov && make && make check
notifications:
email: false #notifications:
irc: # email: false
on_success: change # irc:
on_failure: change # on_success: change
channels: # on_failure: change
- "chat.freenode.net#monero-dev" # channels:
nick: monero # - "chat.freenode.net#monero-dev"
template: # nick: monero
- "%{result} | %{repository}#%{build_number} (%{commit} : %{author}) | Build details : %{build_url}" # template:
# - "%{result} | %{repository}#%{build_number} (%{commit} : %{author}) | Build details : %{build_url}"

Loading…
Cancel
Save