Skip to content

Commit e29864e

Browse files
authored
Merge pull request #10 from OpenSTFoundation/release-0.9
Merging 0.9.4 to master
2 parents 60ec44d + 7adbee1 commit e29864e

56 files changed

Lines changed: 73688 additions & 2 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# OSX
2+
.DS_Store
3+
4+
.idea/
5+
6+
# Vagrant
7+
.vagrant/
8+
ubuntu-xenial-16.04-cloudimg-console.log
9+
10+
# don't commit node_modules
11+
node_modules
12+
13+
package-lock.json
14+
build/
15+
openst-setup/
16+
17+
tmp/*
18+
!tmp/.gitkeep

.prettierrc.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"printWidth": 120,
3+
"tabWidth": 2,
4+
"useTabs": false,
5+
"semi": true,
6+
"singleQuote": true,
7+
"trailingComma": "none",
8+
"bracketSpacing": true,
9+
"arrowParens": "always",
10+
"parser": "flow",
11+
"proseWrap": "preserve"
12+
}

.travis.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
dist: trusty
2+
language: node_js
3+
sudo: required
4+
branches:
5+
only:
6+
- master
7+
- develop
8+
notifications:
9+
email:
10+
recipients:
11+
- ci.report@ost.com
12+
on_success: always
13+
on_failure: always
14+
node_js:
15+
- "9"
16+
before_install:
17+
- sudo apt-get update
18+
- sudo apt-get install nodejs
19+
- sudo apt-get install npm
20+
- sudo apt-get install software-properties-common
21+
- sudo add-apt-repository -y ppa:ethereum/ethereum
22+
- sudo apt-get update
23+
- sudo bash tools/setup/install_geth_1_8_3.sh
24+
- geth version
25+
install:
26+
- npm install
27+
- npm install -g mocha
28+
before_script:
29+
- node tools/initDevEnv.js ~
30+
script:
31+
- mocha --timeout 120000 test/* --exit
32+
after_script:
33+
- kill $(ps aux | grep 'openst-setup/origin-geth' | awk '{print $2}')

0 commit comments

Comments
 (0)