Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaciej MaƂecki <maciej.malecki@notimplemented.org>2011-12-04 04:23:59 +0400
committerisaacs <i@izs.me>2011-12-06 04:50:55 +0400
commit9023b0b3a28824800e8a6a1bf921f47741691c48 (patch)
treebda3b3ebcd8d85e1b2891bfa82eee9f955b668cf /.travis.yml
parentcf20b6bf65bd037193d6e8b1b671c4659897861f (diff)
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.yml14
1 files changed, 14 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 00000000000..595409cefdd
--- /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"
+