forked from OpenST/openst.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
34 lines (34 loc) · 735 Bytes
/
Copy path.travis.yml
File metadata and controls
34 lines (34 loc) · 735 Bytes
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
dist: trusty
language: node_js
sudo: required
branches:
only:
- master
- develop
- /^release-.*/
notifications:
email:
recipients:
- ci.report@ost.com
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:
- npm run test
after_script:
- kill $(ps aux | grep 'openst-setup/origin-geth' | awk '{print $2}')