forked from observing/haproxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
36 lines (36 loc) · 797 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
language: node_js
node_js:
- "0.10"
- "0.12"
- "iojs"
env:
matrix:
- "MASTER=false"
- "MASTER=true"
git:
depth: 10
before_install:
- "npm config set loglevel error"
before_script:
- sudo apt-get install -qq build-essential libssl-dev libev-dev
- wget http://www.haproxy.org/download/1.5/src/haproxy-1.5.12.tar.gz
- tar xzvf haproxy-1.5.12.tar.gz
- cd haproxy-1.5.12
- make TARGET=linux26 USE_OPENSSL=1
- sudo make install
- cd ..
script:
- "npm run test-travis"
after_script:
- "npm install [email protected] && cat coverage/lcov.info | coveralls"
matrix:
fast_finish: true
allow_failures:
- node_js: "iojs"
- env: "MASTER=true"
notifications:
irc:
channels:
- "irc.freenode.org#observing"
on_success: change
on_failure: change