From 105b4c7c01c982795754f884efe60879f2446cf0 Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Sat, 9 Jan 2016 15:37:02 +0200 Subject: [PATCH] Update Travis CI configuration. * remove obsolete node.js versions * specify `sudo: false` and `fast_finish` --- .travis.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 88599cd7..422c58e9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,9 +1,16 @@ +sudo: false + language: node_js + node_js: - "0.6" - "0.8" - "0.10" - - "0.11" - - "0.12" + - "4" + - "5" + script: - ant test + +matrix: + fast_finish: true