Skip to content

Commit 5984745

Browse files
committed
travis: drop v0.11, test iojs v2.5 and v3
1 parent d7af3a7 commit 5984745

File tree

1 file changed

+28
-1
lines changed

1 file changed

+28
-1
lines changed

.travis.yml

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,33 @@
1+
sudo: false
2+
3+
env:
4+
- CXX=g++-4.8
5+
addons:
6+
apt:
7+
sources:
8+
- ubuntu-toolchain-r-test
9+
packages:
10+
- g++-4.8
11+
112
language: node_js
13+
214
node_js:
315
- "0.8"
416
- "0.10"
5-
- "0.11"
617
- "0.12"
18+
- "iojs-v2.5"
19+
- "iojs-v3"
20+
21+
install:
22+
- PATH="`npm bin`:`npm bin -g`:$PATH"
23+
# Node 0.8 comes with a too obsolete npm
24+
- if [[ "`node --version`" =~ ^v0\.8\. ]]; then npm install -g [email protected] ; fi
25+
# Install dependencies and build
26+
- npm install
27+
28+
script:
29+
# Output useful info for debugging
30+
- node --version
31+
- npm --version
32+
# Run tests
33+
- npm test

0 commit comments

Comments
 (0)