mirror of
https://github.com/monero-project/monero
synced 2024-11-01 06:09:34 +01:00
ff6b8f2e59
This will allow people to have Travis push notifications for their repo without spamming the dev channel
43 lines
936 B
YAML
43 lines
936 B
YAML
sudo: required
|
|
dist: trusty
|
|
language: cpp
|
|
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-bots"
|
|
nick: monero
|
|
template:
|
|
- "%{result} | %{repository}#%{build_number} (%{commit} : %{author}) | Build details : %{build_url}"
|