Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/webtorrent/webtorrent.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Frazier <1212jtraceur@gmail.com>2016-04-27 04:41:35 +0300
committerJoseph Frazier <1212jtraceur@gmail.com>2016-04-27 04:41:35 +0300
commit4e28de9e5df522689b18f4c76fffedea66fa156d (patch)
tree226379ed021a6f15979f111f021f12583cdeac32
parent091a83382d2b920f2c8eaef8dfd5e91e84ef47b6 (diff)
Test Node v5 on Travis/AppVeyor (v6 is stable) (#774)
AppVeyor doesn't have v6 prebuilt yet, so we have to use `Update-NodeJsInstallation` to install it manually.
-rw-r--r--.appveyor.yml10
-rw-r--r--.travis.yml1
2 files changed, 8 insertions, 3 deletions
diff --git a/.appveyor.yml b/.appveyor.yml
index b7f0f83..cd51e64 100644
--- a/.appveyor.yml
+++ b/.appveyor.yml
@@ -7,13 +7,17 @@ init:
# https://www.appveyor.com/docs/lang/nodejs-iojs#testing-under-multiple-versions-of-node-js-or-io-js
environment:
matrix:
- - nodejs_version: "" # https://www.appveyor.com/docs/installed-software#node-js
+ - nodejs_version: "6"
+ - nodejs_version: "5"
- nodejs_version: "4"
+platform:
+ - x86
+
# Install scripts. (runs after repo cloning)
install:
- # Get the latest stable version of Node.js or io.js
- - ps: Install-Product node $env:nodejs_version
+ # https://www.appveyor.com/docs/lang/nodejs-iojs#installing-em-any-em-version-of-node-js-or-io-js
+ - ps: Update-NodeJsInstallation (Get-NodeJsLatestBuild $env:nodejs_version) $env:platform
# install modules
- npm install
diff --git a/.travis.yml b/.travis.yml
index 6d98836..2b3068a 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,6 +1,7 @@
language: node_js
node_js:
- 'node'
+ - '5'
- '4'
sudo: false
env: