-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Tweak supported Node.js versions, drop io.js
Current setup means karma won't be tested on future updates to the Node v4 line. Those updates are not allowed to introduce breaking changes and only the newest one is officially supported so that's the one that should be tested. In the same way, ythe config doesn't contain "0.10.0" or "0.12.0" but "0.10" & "0.12" so it catches latest updates. io.js testing has been dropped - io.js has no official support policy as opposed to Node.js; also, it won't see any major releases. Refs 6b8d30f
- Loading branch information
Showing
4 changed files
with
18 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,26 @@ | ||
sudo: false | ||
language: node_js | ||
node_js: | ||
- "iojs-v3.2.0" | ||
- "0.12" | ||
- "0.10" | ||
- "4.0.0" | ||
- "0.12" | ||
- "4" | ||
|
||
# Node.js 4 is supported but an optional socket.io dependency doesn't work yet, causing | ||
# a lot of error messages on Travis. Travis then terminates the build because of excessive | ||
# logging. All tests pass locally on Node.js 4. | ||
# TODO remove this exception when https://github.com/socketio/socket.io/issues/2228 is fixed. | ||
matrix: | ||
allow_failures: | ||
- node_js: "4" | ||
|
||
env: | ||
global: | ||
- SAUCE_USERNAME: vojtajina | ||
- secure: "bRVY+hYZwMf1SqVnMyZRJTLD0gN1hLx9/MwO8MM/qBiu3YNjXy49XElfMdzMKN6cZeKTmhcnjmZonbJuI1PQ2t+utGkyjnlVLJ/OlWptreKLzIlcbt4hrdPoTcjmUTwDWq9Ex9cVoYX8AzCasETttpczp3P+s3+vmOUj8z25JyU=" | ||
|
||
# Make sure we have new NPM. | ||
# Make sure we have a new npm on Node 0.10. | ||
before_install: | ||
- '[ "${TRAVIS_NODE_VERSION}" != "0.8" ] || npm install -g [email protected]' | ||
- npm install -g npm | ||
- '[ "${TRAVIS_NODE_VERSION}" != "0.10" ] || npm install -g npm' | ||
- npm config set loglevel warn | ||
|
||
before_script: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ce1d26f
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@mzgol Could you publish this as a new Karma version?
ce1d26f
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not a maintainer so I can't publish. :) cc @dignifiedquire
ce1d26f
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh, okay. Sorry :)
ce1d26f
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I see it's already published, though.
ce1d26f
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Take a look at
0.13.10
ce1d26f
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Okay, thanks. Was pushed shortly after my comment.