forked from hyperledger-archives/composer-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
31 lines (30 loc) · 765 Bytes
/
.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
language: node_js
node_js:
- '8'
dist: trusty
before_install: |
set -ev
set -o pipefail
npm install -g npm@4
npm install -g @alrra/travis-scripts
script: ./.travis/script.sh
deploy:
provider: script
script: ./.travis/deploy.sh
skip_cleanup: true
on:
all_branches: true
after_failure: |
tail -n +1 -- /home/travis/.npm/_logs/*-debug.log
sudo: required
services:
- docker
notifications:
webhooks:
urls:
- https://chat.hyperledger.org/hooks/BG3PeSerMSWRDSceE/GPCnCSqxMoyfqaTvLePSGudWjoCBwAcCT6bAKYRjK2sKSCM9
on_success: always # default: always
on_failure: always # default: always
on_start: always # default: never
on_cancel: always # default: always
on_error: always # default: always