From 899e03ab639d1b734cb4198b78ac6880e0f62d6b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Heikki=20Yl=C3=B6nen?= Date: Mon, 16 Feb 2015 15:14:03 -0400 Subject: [PATCH] Build: Update CI environments --- .travis.yml | 4 +++- appveyor.yml | 23 ++++++++++++----------- 2 files changed, 15 insertions(+), 12 deletions(-) diff --git a/.travis.yml b/.travis.yml index dcbee380..83838f06 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,9 @@ +sudo: false language: node_js node_js: + - "iojs" + - "0.12" - "0.10" - - "0.11" after_script: - npm run coveralls git: diff --git a/appveyor.yml b/appveyor.yml index e1a1324c..6fb806d8 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,28 +1,29 @@ -# appveyor file # http://www.appveyor.com/docs/appveyor-yml +# http://www.appveyor.com/docs/lang/nodejs-iojs -# branches to build branches: # whitelist only: - master -# build version format -version: "{build}" - -# what combinations to test environment: matrix: - - nodejs_version: 0.10 + # node.js + - nodejs_version: "0.10" + - nodejs_version: "0.12" + # io.js + - nodejs_version: "1" -# Get the stable version of node install: - ps: Install-Product node $env:nodejs_version - npm install -build: off - test_script: - node --version - npm --version - - cmd: npm test \ No newline at end of file + - npm test + +build: off + +# build version format +version: "{build}"