Skip to content

Commit

Permalink
Added Travis CI support.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark Everitt committed Jan 16, 2013
1 parent a22df63 commit 5ac2c34
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 1 deletion.
17 changes: 17 additions & 0 deletions .travis.yml
@@ -0,0 +1,17 @@
env:
- ZMQ="git://github.com/zeromq/zeromq2-x.git"
- ZMQ="git://github.com/zeromq/zeromq3-x.git"
before_install:
- sudo apt-get install uuid-dev
- git clone --depth 1 $ZMQ zmqlib
- cd zmqlib
- ./autogen.sh
- ./configure
- make
- sudo make install
- sudo /sbin/ldconfig
- cd ..
language: node_js
node_js:
- "0.8"
- "0.9"
2 changes: 2 additions & 0 deletions README.md
@@ -1,3 +1,5 @@
[![Build Satus](https://travis-ci.org/JustinTulloss/zeromq.node)]

# node-zeromq

[ØMQ](http://www.zeromq.org/) bindings for node.js.
Expand Down
6 changes: 5 additions & 1 deletion package.json
Expand Up @@ -16,6 +16,9 @@
"engines": {
"node": ">=0.7.9"
},
"scripts": {
"test": "make test"
},
"contributors": [
"Justin Tulloss <justin.tulloss@gmail.com> (http://justin.harmonize.fm)",
"Stéphan Kochen <stephan@kochen.nl> (http://stephan.kochen.nl/)",
Expand All @@ -27,4 +30,5 @@
"Micheil Smith <micheil@brandedcode.com> (http://brandedcode.com/)",
"TJ Holowaychuk <tj@vision-media.ca> (http://tjholowaychuk.com/)"
]
}
}

0 comments on commit 5ac2c34

Please sign in to comment.