forked from FISCO-BCOS/FISCO-BCOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
80 lines (78 loc) · 2.55 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#------------------------------------------------------------------------------
# TravisCI configuration file for FISCO-BCOS
# ------------------------------------------------------------------------------
# This file is part of FISCO-BCOS.
#
# FISCO-BCOS is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# FISCO-BCOS is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with FISCO-BCOS. If not, see <http://www.gnu.org/licenses/>
#
# (c) 2016-2018 FISCO-BCOS contributors.
#------------------------------------------------------------------------------
language: cpp
branches:
only:
- /.*/
env:
global:
- TRAVIS_BUILD_TYPE=RelWithDebInfo
- TRAVIS_TESTS=ON
matrix:
fast_finish: true
include:
- os: linux
dist: xenial
sudo: required
env:
- CACHE_NAME=ubuntu16
- ZIP_SUFFIX=ubuntu-xenial
- os: osx
osx_image: xcode9.4
env: CACHE_NAME=osx
git:
depth: 1
compiler: clang
cache:
directories:
- $TRAVIS_BUILD_DIR/deps
# - $TRAVIS_BUILD_DIR/build
before_cache:
# - rm -rf $TRAVIS_BUILD_DIR/build/nodes $TRAVIS_BUILD_DIR/build/bin
addons:
apt:
packages:
- cmake
- libssl-dev
- clang
# - ninja-build
- openssl
homebrew:
packages:
- openssl
- clang-format
install: |
bash tools/ci/check-commit.sh;
script: |
mkdir -p build && cd build && CC=/usr/bin/clang CXX=/usr/bin/clang++ cmake .. && make -j2 && \
../tools/build_chain.sh -l "127.0.0.1:4" -e bin/fisco-bcos && cd nodes/127.0.0.1 && bash start_all.sh && sleep 2 && [ $(bash transTest.sh | grep "result" | wc -l) -eq 1 ]
after_success:
# if [ $TRAVIS_OS_NAME == linux ]; then
# cd $TRAVIS_BUILD_DIR && bash <(curl -s https://codecov.io/bash)
# fi
after_failure:
# rm -rf $TRAVIS_BUILD_DIR/build $TRAVIS_BUILD_DIR/deps
webhooks:
urls:
- https://webhooks.gitter.im/e/334c46f8aee9f5fb65dc
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