-
Notifications
You must be signed in to change notification settings - Fork 29
/
.travis.yml
59 lines (51 loc) · 1.23 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
sudo: false
language: cpp
env:
global:
- LLVM_VERSION=3.8.0
# Maintenance note: to move to a new version
# of boost, update both BOOST_ROOT and BOOST_URL.
# Note that for simplicity, BOOST_ROOT's final
# namepart must match the folder name internal
# to boost's .tar.gz.
- LCOV_ROOT=$HOME/lcov
- BOOST_ROOT=$HOME/boost_1_67_0
- BOOST_URL='http://sourceforge.net/projects/boost/files/boost/1.67.0/boost_1_67_0.tar.gz'
addons:
apt:
sources: ['ubuntu-toolchain-r-test']
packages:
- gcc-5
- g++-5
- python-software-properties
- protobuf-compiler
- libprotobuf-dev
- libssl-dev
- libstdc++6
- binutils-gold
- cmake
- lcov
- gdb
matrix:
include:
- compiler: gcc
env:
- GCC_VER=5
- BUILD_TYPE=Debug
- PARALLEL_TESTS='false'
- CMAKE_EXTRA_ARGS='-Werr=ON -Dcoverage=ON'
- PATH=$PWD/cmake/bin:$PATH
- APP=ripplelibppdemo
cache:
directories:
- $BOOST_ROOT
before_install:
- ( cd extras/rippled && bin/ci/ubuntu/install-dependencies.sh ../.. )
script:
- extras/rippled/bin/ci/ubuntu/build-and-test.sh
notifications:
email:
false
irc:
channels:
- "chat.freenode.net#ripple-dev"