mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
Added -j2 to Makefile and clean up matrix
Signed-off-by: Jacob Torrey <discipleofranok@gmail.com>
This commit is contained in:
parent
256dec0601
commit
650afacc1f
1 changed files with 35 additions and 7 deletions
42
.travis.yml
42
.travis.yml
|
@ -9,8 +9,7 @@ matrix:
|
|||
# Coveralls.io
|
||||
#
|
||||
- os: linux
|
||||
compiler:
|
||||
- gcc
|
||||
compiler: gcc
|
||||
addons:
|
||||
apt:
|
||||
packages:
|
||||
|
@ -38,17 +37,15 @@ matrix:
|
|||
install:
|
||||
- sudo apt-get -y install libboost-{chrono,program-options,date-time,thread,system,filesystem,regex,serialization}1.58{-dev,.0}
|
||||
script:
|
||||
- make debug-test
|
||||
- make -j2 debug-test
|
||||
after_success:
|
||||
- coveralls --exclude external --exclude tests -e cmake -e contrib -e translations -e utils --gcov-options '\-lp'
|
||||
|
||||
#
|
||||
# Monero release-all
|
||||
# Monero release-all (gcc)
|
||||
#
|
||||
- os: linux
|
||||
compiler:
|
||||
- gcc
|
||||
- clang
|
||||
compiler: gcc
|
||||
addons:
|
||||
apt:
|
||||
packages:
|
||||
|
@ -77,6 +74,37 @@ matrix:
|
|||
script:
|
||||
- make -j2 && HAVE_DOT=YES doxygen Doxyfile
|
||||
|
||||
#
|
||||
# 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
|
||||
|
||||
|
||||
#notifications:
|
||||
# email: false
|
||||
|
|
Loading…
Reference in a new issue