Skip to content

Commit 4d80607

Browse files
committed
Add iojs test matrix
1 parent 96de25f commit 4d80607

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
env:
22
matrix:
3+
fast_finish: true
34
- export NODE_VERSION="0.10"
45
- export NODE_VERSION="0.12"
6+
- export NODE_VERSION="iojs"
57
before_install:
68
- git clone https://github.com/creationix/nvm.git ./.nvm
79
- source ./.nvm/nvm.sh

appveyor.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,15 @@ init:
1919
# what combinations to test
2020
environment:
2121
matrix:
22-
- nodejs_version: 0.10
23-
- nodejs_version: 0.12
22+
# Node.js
23+
- nodejs_version: "0.10"
24+
- nodejs_version: "0.12"
25+
# io.js
26+
- nodejs_version: "1.0"
2427

2528
# Get the latest stable version of Node 0.STABLE.latest
2629
install:
27-
- ps: Update-NodeJsInstallation (Get-NodeJsLatestBuild $env:nodejs_version)
30+
- ps: Install-Product node $env:nodejs_version
2831
- cmd: SET PATH=C:\Program Files (x86)\MSBuild\12.0\bin\;%PATH%
2932
- cmd: SET PATH=c:\python27;%PATH%
3033
- cmd: SET JOBS=4

0 commit comments

Comments
 (0)