Converted to a build matrix for testing and release
Signed-off-by: Jacob Torrey <torreyj@ainfosec.com>
This commit is contained in:
parent
342dbfb705
commit
7351a1174b
129
.travis.yml
129
.travis.yml
|
@ -1,45 +1,90 @@
|
||||||
sudo: required
|
sudo: required
|
||||||
dist: trusty
|
dist: trusty
|
||||||
language: cpp
|
language: cpp
|
||||||
compiler:
|
|
||||||
- gcc
|
matrix:
|
||||||
- clang
|
include:
|
||||||
addons:
|
|
||||||
apt:
|
#
|
||||||
packages:
|
# Coveralls.io
|
||||||
- build-essential
|
#
|
||||||
- cmake
|
- os: linux
|
||||||
- doxygen
|
compiler:
|
||||||
- g++
|
- gcc
|
||||||
- gcc
|
addons:
|
||||||
- clang
|
apt:
|
||||||
- graphviz
|
packages:
|
||||||
- libdb++-dev
|
- build-essential
|
||||||
- libdb-dev
|
- cmake
|
||||||
- libgtest-dev
|
- doxygen
|
||||||
- libminiupnpc-dev
|
- g++
|
||||||
- libssl-dev
|
- gcc
|
||||||
- libssl1.0.0
|
- clang
|
||||||
- libunbound-dev
|
- graphviz
|
||||||
- libunwind8-dev
|
- libdb++-dev
|
||||||
sources:
|
- libdb-dev
|
||||||
- ubuntu-toolchain-r-test
|
- libgtest-dev
|
||||||
before_install:
|
- libminiupnpc-dev
|
||||||
- sudo add-apt-repository -y ppa:kojoley/boost
|
- libssl-dev
|
||||||
- sudo apt-get -q update
|
- libssl1.0.0
|
||||||
- pip install --user cpp-coveralls
|
- libunbound-dev
|
||||||
install:
|
- libunwind8-dev
|
||||||
- sudo apt-get -y install libboost-{chrono,program-options,date-time,thread,system,filesystem,regex,serialization}1.58{-dev,.0}
|
sources:
|
||||||
script:
|
- ubuntu-toolchain-r-test
|
||||||
- make -j2 && HAVE_DOT=YES doxygen Doxyfile
|
before_install:
|
||||||
#- ./configure --enable-gcov && make && make check
|
- sudo add-apt-repository -y ppa:kojoley/boost
|
||||||
notifications:
|
- sudo apt-get -q update
|
||||||
email: false
|
- pip install --user cpp-coveralls
|
||||||
irc:
|
install:
|
||||||
on_success: change
|
- sudo apt-get -y install libboost-{chrono,program-options,date-time,thread,system,filesystem,regex,serialization}1.58{-dev,.0}
|
||||||
on_failure: change
|
script:
|
||||||
channels:
|
- ./configure --enable-gcov && make && make check
|
||||||
- "chat.freenode.net#monero-dev"
|
after_success:
|
||||||
nick: monero
|
- coveralls --exclude external --exclude tests -e cmake -e contrib -e translations -e utils --gcov-options '\-lp'
|
||||||
template:
|
|
||||||
- "%{result} | %{repository}#%{build_number} (%{commit} : %{author}) | Build details : %{build_url}"
|
#
|
||||||
|
# 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:
|
||||||
|
- 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}"
|
||||||
|
|
Loading…
Reference in New Issue