From d7ed0a5710a19ea340e8964c7aed2e634d833c41 Mon Sep 17 00:00:00 2001 From: mdemo Date: Sun, 8 Feb 2015 12:24:38 +0800 Subject: [PATCH 1/2] Add node.js 0.12 and io.js to travis.yml --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index 0988483f3..f0da7e686 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,6 +2,8 @@ language: node_js node_js: - "0.8" - "0.10" + - "0.12" + - "io.js" before_install: npm install -g npm@~1.4.6 after_script: ./node_modules/.bin/istanbul cover ./node_modules/tape/bin/tape tests/test-*.js --report lcovonly && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js --verbose webhooks: From aaf208ea83f19d6dee232999415540ec0913dfbe Mon Sep 17 00:00:00 2001 From: Nicolas McCurdy Date: Sun, 1 Mar 2015 23:00:36 -0500 Subject: [PATCH 2/2] Allow build failures on Node 0.12 and io.js --- .travis.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.travis.yml b/.travis.yml index 368e1ee92..98472f761 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,6 +3,10 @@ node_js: - "0.10" - "0.12" - "io.js" +matrix: + allow_failures: + - node_js: "0.12" + - node_js: "io.js" after_script: ./node_modules/.bin/istanbul cover ./node_modules/tape/bin/tape tests/test-*.js --report lcovonly && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js --verbose webhooks: urls: https://webhooks.gitter.im/e/237280ed4796c19cc626