test: add `.travis.yml` for testing on Travis CI
authorMaciej Małecki <maciej.malecki@notimplemented.org>
Sun, 4 Dec 2011 00:23:59 +0000 (01:23 +0100)
committerisaacs <i@izs.me>
Tue, 6 Dec 2011 00:50:55 +0000 (16:50 -0800)
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.

.travis.yml [new file with mode: 0644]

diff --git a/.travis.yml b/.travis.yml
new file mode 100644 (file)
index 0000000..595409c
--- /dev/null
@@ -0,0 +1,14 @@
+language: node_js
+
+before_script:
+  - "./configure"
+  - "make"
+
+script:
+  - "make test"
+
+notifications:
+  email: false
+  irc:
+    - "irc.freenode.net#libuv"
+