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:
Diffstat (limited to '.appveyor.yml')
-rw-r--r--.appveyor.yml10
1 files changed, 7 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