forked from OpenST/openst.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
36 lines (36 loc) · 794 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
32
33
34
35
36
dist: trusty
language: node_js
sudo: required
branches:
only:
- master
- develop
- openst_0_9_4_develop
notifications:
email:
recipients:
on_success: always
on_failure: always
node_js:
- "9"
before_install:
- sudo apt-get update
- sudo apt-get install nodejs
- sudo apt-get install npm
- sudo apt-get install software-properties-common
- sudo add-apt-repository -y ppa:ethereum/ethereum
- sudo apt-get update
- sudo bash tools/setup/install_geth_1_8_3.sh
- geth version
install:
- npm install
- npm install -g mocha
before_script:
- node tools/initDevEnv.js ~
script:
- mocha --timeout 120000 test/* --exit
after_script:
- echo 'inside after_script before sleep'
- sleep 30
- echo 'inside after_script after sleep'