forked from tjappo/shift-explorer
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.travis.yml
More file actions
23 lines (23 loc) · 746 Bytes
/
.travis.yml
File metadata and controls
23 lines (23 loc) · 746 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
dist: 'trusty'
language: node_js
sudo: required
node_js:
- 'node'
- '6.10.1'
services:
- redis-server
before_script:
- npm install
- npm run build
- grunt candles:build
- wget https://github.com/fiorix/freegeoip/releases/download/v3.1.5/freegeoip-3.1.5-linux-amd64.tar.gz
- tar -zxvf freegeoip-3.1.5-linux-amd64.tar.gz
- cd freegeoip-3.1.5-linux-amd64; ./freegeoip > /dev/null 2>&1 & cd ../
- wget https://downloads.lisk.io/lisk/test/lisk-Linux-x86_64.tar.gz
- tar -zxf lisk-Linux-x86_64.tar.gz
- sudo service postgresql stop
- cp test/config_lisk.json lisk-Linux-x86_64/config.json
- cd lisk-Linux-x86_64; bash lisk.sh coldstart; cd ../
- cp test/config.test ./config.js
- node app.js &> /dev/null &
- sleep 5