Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 26 additions & 8 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,36 @@
# This variable requests the highest version of
# Visual Studio to be installed. Previous versions
# will also be available and work. So, choosing 2015 here makes
# available both `msvs_toolset: 12` (from Visual Studio 2013)
# and `msvs_toolset: 14` (from Visual Studio 2015)
# Note/TODO: it is not yet confirmed that earlier versions work with the the `Visual Studio 2017` os image.
os: Visual Studio 2015

platform:
- x64
- x86


environment:
matrix:
- nodejs_version: 0.10
- nodejs_version: 0.12
msvs_toolset: 12
- nodejs_version: 4
- nodejs_version: 5
msvs_toolset: 12
- nodejs_version: 6

platform:
- x64
- x86
msvs_toolset: 12
- nodejs_version: 8
msvs_toolset: 12
- nodejs_version: 4
msvs_toolset: 14
- nodejs_version: 6
msvs_toolset: 14
- nodejs_version: 8
msvs_toolset: 14

install:
- npm install
- npm test
- ps: Start-FileDownload 'https://github.com/mapbox/ci-scripts/raw/v1.1.0/node/ci-js.bat' -FileName ci.bat
- CALL ci.bat

build: OFF
test: OFF
Expand Down