forked from cozy/cozy-home-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
31 lines (30 loc) · 703 Bytes
/
.travis.yml
File metadata and controls
31 lines (30 loc) · 703 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
language: node_js
matrix:
fast_finish: true
allow_failures:
- node_js: "0.11"
node_js:
- "0.10"
- "0.11"
services:
- couchdb
env:
global:
- NODE_ENV=test
before_install:
- git clone git://github.com/mycozycloud/cozy-data-system.git
- cd cozy-data-system
- npm install forever coffee-script -g
- npm install
- pwd
- NAME=data-system TOKEN=token forever start -o forever-ds.log build/server.js
- sleep 5
- ps aux | grep server.js
- sudo netstat -plunt
- cat forever-ds.log
- curl http://localhost:9101/
- cd ..
- export NAME=home
- export TOKEN=token
after_failure:
- cat cozy-data-system/forever-ds.log