README/Repo: remove Travis CI
We use Buildbot now: https://build.getmonero.org/
This commit is contained in:
parent
83b0511731
commit
38dc0bf497
120
.travis.yml
120
.travis.yml
|
@ -1,120 +0,0 @@
|
|||
sudo: required
|
||||
dist: trusty
|
||||
language: cpp
|
||||
|
||||
matrix:
|
||||
include:
|
||||
|
||||
#
|
||||
# Coveralls.io
|
||||
#
|
||||
- os: linux
|
||||
compiler: gcc
|
||||
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
|
||||
- pip install --user cpp-coveralls
|
||||
install:
|
||||
- sudo apt-get -y install libboost-{chrono,program-options,date-time,thread,system,filesystem,regex,serialization}1.58{-dev,.0}
|
||||
env:
|
||||
# exclude long-running and failing tests (#895)
|
||||
- ARGS=" -E 'coretests|libwallet_api_tests' "
|
||||
script:
|
||||
- make -j2 coverage
|
||||
after_success:
|
||||
- travis_wait coveralls -e external -e tests -e cmake -e contrib -e translations -e utils --gcov-options '\-lp' &> /dev/null
|
||||
|
||||
#
|
||||
# Monero release-all (gcc)
|
||||
#
|
||||
- os: linux
|
||||
compiler: gcc
|
||||
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
|
||||
|
||||
#
|
||||
# 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
|
||||
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}"
|
|
@ -2,7 +2,6 @@
|
|||
|
||||
Copyright (c) 2014-2016, The Monero Project
|
||||
|
||||
[![Build Status](https://travis-ci.org/monero-project/monero.svg?branch=master)](https://travis-ci.org/monero-project/monero)
|
||||
[![Coverage Status](https://coveralls.io/repos/github/monero-project/monero/badge.svg?branch=master)](https://coveralls.io/github/monero-project/monero?branch=master)
|
||||
|
||||
## Development Resources
|
||||
|
|
Loading…
Reference in New Issue