We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 55f2486 commit 8e5862cCopy full SHA for 8e5862c
.travis.yml
@@ -1,6 +1,8 @@
1
language: node_js
2
node_js:
3
- "0.10"
4
+ - "0.12"
5
+ - "4"
6
addons:
7
firefox: "31.0" # 3.4->31.0
8
os:
@@ -24,7 +26,10 @@ before_install:
24
26
- cd ../
25
27
- rosdep install --from-paths src --ignore-src --rosdistro hydro -y
28
- cd /tmp/ws/roslibjs
- - npm install -g npm
29
+
30
+ # Only update npm in the 0.8 and 0.10 versions to not run into this issue:
31
+ # https://github.com/nodejs/node/issues/433
32
+ - case ${TRAVIS_NODE_VERSION} in 0.8*|0.10*) npm update -g npm ;; esac
33
- npm install -g grunt-cli karma-cli
34
35
# Set up Xfvb for Firefox headless testing
0 commit comments