forked from Zilliqa/Zilliqa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
57 lines (53 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
language: generic
cache:
directories:
- $HOME/.ccache/
matrix:
include:
- os: linux
dist: xenial
# - os: osx
# osx_image: xcode10.1
addons:
apt:
update: true
packages:
# APT packages are organized into two groups, build dependency and
# development dependency, where the former is necessary for users who
# want to build Zilliqa whereas the latter is only for CI.
# Note that the names are sorted in each group.
#
# Build dependency
- build-essential
- cmake
- libboost-filesystem-dev
- libboost-program-options-dev
- libboost-system-dev
- libboost-test-dev
- libboost-python-dev
- libcurl4-openssl-dev
- libevent-dev
- libjsoncpp-dev
- libjsonrpccpp-dev
- libleveldb-dev
- libmicrohttpd-dev
- libminiupnpc-dev
- libsnappy-dev
- libssl-dev
- pkg-config
# Development dependency
- ccache
- clang-5.0
- clang-format-5.0
- clang-tidy-5.0
- curl
- gawk
- git
- lcov
- libxml2-utils
- python-pip
script:
- ./scripts/ci_build.sh;
# Code coverage is currently only implemented for GCC builds, so OSX is currently excluded from reporting
after_success:
- ./scripts/ci_report_coverage.sh