Skip to content

Commit 38f85c0

Browse files
committed
Updated TravisCI and Appveyor configs to allow 0.8.x failures.
1 parent bcac2ac commit 38f85c0

File tree

2 files changed

+17
-7
lines changed

2 files changed

+17
-7
lines changed

.travis.yml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,16 @@ env:
44
language: node_js
55

66
node_js:
7+
- 0.8
78
- 0.10
8-
- 0.12
9-
- 4
10-
- iojs-v2
11-
- iojs-v3
9+
- 0 #Latest 0.x.x build.
10+
- 3 #Latest io.js build.
11+
- 4.2.4 #LTS
12+
- stable
13+
14+
matrix:
15+
allow_failures:
16+
- node_js: 0.8
1217

1318
addons:
1419
apt:

appveyor.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,15 @@ environment:
66
# node.js
77
- nodejs_version: "0.8"
88
- nodejs_version: "0.10"
9-
- nodejs_version: "0.12"
10-
- nodejs_version: "3"
11-
- nodejs_version: "4"
9+
- nodejs_version: "0" #Latest 0.x.x build.
10+
- nodejs_version: "3" #Latest io.js build.
11+
- nodejs_version: "4.2.4" #LTS
12+
- nodejs_version: "Stable"
1213

14+
matrix:
15+
allow_failures:
16+
- nodejs_version: "0.8" #Allow Node.js 0.8.x to fail.
17+
1318
# Install scripts. (runs after repo cloning)
1419
install:
1520
# Get the latest stable version of Node 0.STABLE.latest

0 commit comments

Comments
 (0)