blob: ae2ff72734a214cd97f7f115891572844592406a (
plain)
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
# NOTE: Please validate this file after editing it using
# Travis WebLint https://lint.travis-ci.org/
# or travis-lint https://github.com/travis-ci/travis-lint
language: cpp
compiler:
- gcc
os:
- linux
sudo: false
cache:
apt: true
env:
global:
# List of required boost libraries to build
- BOOST_LIBS="date_time,filesystem,iostreams,python,regex,system,test"
# Encrypted COVERITY_SCAN_TOKEN
- secure: "mYNxD1B8WNSvUeKzInehZ7syi2g1jH2ymeSQxoeKKD2duq3pvNWPdZdc4o9MlWQcAqcz58rhFZRIpuEWCnP0LbbJaG+MyuemMn9uAmg9Y4gFpMsBPHuTdf8pO3rDex+tkrr9puEJFgL+QV/TehxO6NDDpx7UdYvJb+4aZD/auYI="
matrix:
# Boost version to build against; an empty string means the
# distribution's default.
- BOOST_VERSION="1.61.0"
addons:
coverity_scan:
project:
name: "ledger/ledger"
description: "Build submitted via Travis CI"
build_command_prepend: "cmake . -DUSE_PYTHON=ON -DBUILD_DEBUG=ON -DCLANG_GCOV=ON"
build_command: "make"
branch_pattern: coverity
apt:
packages:
- libgmp-dev
- libmpfr-dev
- libedit-dev
- libboost-dev
- libboost-test-dev
- libboost-regex-dev
- libboost-python-dev
- libboost-system-dev
- libboost-date-time-dev
- libboost-iostreams-dev
- libboost-filesystem-dev
- libboost-serialization-dev
before_install:
- |
if [ -n "${BOOST_VERSION}" ]; then
BOOST_SOURCE="$(mktemp -d)"
BOOST_SOURCE_URL="https://sourceforge.net/projects/boost/files/boost/${BOOST_VERSION}/boost_${BOOST_VERSION//./_}.tar.bz2/download"
curl -Ls "$BOOST_SOURCE_URL" |
tar jx -C "${BOOST_SOURCE}" --strip-components 1
fi
install:
- |
if [ -n "${BOOST_VERSION}" ]; then
export BOOST_ROOT="${HOME}/boost"
pushd "${BOOST_SOURCE}"
./bootstrap.sh --with-libraries="${BOOST_LIBS}"
./b2 threading=multi -d0 --prefix="${BOOST_ROOT}" install
popd
rm -Rf "${BOOST_SOURCE}"
fi
before_script:
- cmake . -DUSE_PYTHON=ON -DBUILD_DEBUG=ON
- make
script:
- ctest --output-on-failure
- PYTHONPATH=. python python/demo.py
notifications:
email:
on_success: change
on_failure: change
irc:
channels: [ "chat.freenode.net#ledger" ]
on_success: change
on_failure: change
webhooks:
urls:
- https://webhooks.gitter.im/e/0050d91909a8cde39e35
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: never # options: [always|never|change] default: always
|