diff options
author | Maciej MaĆecki <maciej.malecki@notimplemented.org> | 2011-12-04 01:23:59 +0100 |
---|---|---|
committer | isaacs <i@izs.me> | 2011-12-05 16:50:55 -0800 |
commit | 9023b0b3a28824800e8a6a1bf921f47741691c48 (patch) | |
tree | bda3b3ebcd8d85e1b2891bfa82eee9f955b668cf /.travis.yml | |
parent | cf20b6bf65bd037193d6e8b1b671c4659897861f (diff) | |
download | node-9023b0b3a28824800e8a6a1bf921f47741691c48.tar.gz |
test: add `.travis.yml` for testing on Travis CI
As discussed with @isaacs, build reports will be sent to #libuv IRC
channel. E-mail notifications are turned off so that Travis doesn't
bother committers about failures in forks.
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 000000000..595409cef --- /dev/null +++ b/.travis.yml @@ -0,0 +1,14 @@ +language: node_js + +before_script: + - "./configure" + - "make" + +script: + - "make test" + +notifications: + email: false + irc: + - "irc.freenode.net#libuv" + |