forked from FISCO-BCOS/FISCO-BCOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
108 lines (105 loc) · 3.46 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
#------------------------------------------------------------------------------
# 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.
#------------------------------------------------------------------------------
branches:
only:
- /.*/
env:
global:
- TRAVIS_BUILD_TYPE=RelWithDebInfo
- TRAVIS_TESTS=ON
- CCACHE_DIR=$TRAVIS_BUILD_DIR/ccache
matrix:
fast_finish: true
include:
- language: python
python: 3.6
dist: xenial
before_cache:
cache:
addons:
before_install:
install:
script: |
bash ./tools/ci/security_audit.sh
webhooks:
- language: cpp
os: linux
dist: xenial
sudo: required
env:
- CACHE_NAME=ubuntu16
- ZIP_SUFFIX=ubuntu-xenial
- language: cpp
os: osx
osx_image: xcode10.2
env:
- CACHE_NAME=osx
- PROJECT_USERNAME=FISCO-BCOS
- PROJECT_REPONAME=FISCO-BCOS
git:
depth: 1
compiler: clang
cache:
directories:
- $TRAVIS_BUILD_DIR/deps
- $TRAVIS_BUILD_DIR/ccache
before_cache:
# - rm -rf $TRAVIS_BUILD_DIR/build/nodes $TRAVIS_BUILD_DIR/build/bin
addons:
apt:
packages:
- cmake
- libssl-dev
- clang
- ccache
# - ninja-build
- libomp-dev
- openssl
homebrew:
packages:
- openssl
- ccache
- go
install: |
if [[ $TRAVIS_OS_NAME == linux && "$TRAVIS_BRANCH" != "master" ]]; then
bash tools/ci/check-commit.sh;
fi
script: |
if [[ $TRAVIS_OS_NAME == linux ]]; then
mkdir -p build && cd build && CC=/usr/bin/clang CXX=/usr/bin/clang++ /usr/bin/cmake .. && \
make -j2 && cd ../tools && bash ci/ci_check.sh
else
mkdir -p build && cd build && CC=/usr/bin/clang CXX=/usr/bin/clang++ cmake .. && \
make -j2 && cd ../tools && bash ci/ci_check.sh
fi
after_success: |
if [[ "${TRAVIS_OS_NAME}" == "osx" && ! -z "${TRAVIS_TAG}" ]]; then
pwd && ls -al ./ && cd $TRAVIS_BUILD_DIR/build/bin && strip fisco-bcos && tar -zcf fisco-bcos-macOS.tar.gz fisco-bcos && \
go get github.com/tcnksm/ghr && ls -R ~/go/bin/ && ~/go/bin/ghr -t ${GITHUB_TOKEN} -u ${PROJECT_USERNAME} -r ${PROJECT_REPONAME} -replace ${TRAVIS_TAG} ${TRAVIS_BUILD_DIR}/build/bin/fisco-bcos-macOS.tar.gz
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