2017-08-11 01:37:44 +03:00
|
|
|
environment:
|
|
|
|
matrix:
|
|
|
|
# Windows Server 2012 R2 Visual C++ Build Tools 2015
|
|
|
|
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
|
|
|
|
nodejs_version: 4.5.0
|
|
|
|
# Windows Server 2012 R2 Visual C++ Build Tools 2015
|
|
|
|
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
|
|
|
|
nodejs_version: LTS
|
|
|
|
# Windows Server 2016 Visual C++ Build Tools 2017
|
|
|
|
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
|
|
|
|
nodejs_version: Stable
|
|
|
|
|
|
|
|
platform:
|
|
|
|
- x64
|
|
|
|
|
|
|
|
install:
|
|
|
|
- ps: Install-Product node $env:nodejs_version $env:platform
|
|
|
|
- npm install cmake-js -g
|
2017-08-18 03:10:20 +03:00
|
|
|
- npm install --no-fetch
|
2017-08-11 01:37:44 +03:00
|
|
|
|
|
|
|
# Skip MSBuild stage
|
|
|
|
build: off
|
|
|
|
|
|
|
|
test_script:
|
|
|
|
- npm test
|
|
|
|
- npm run unittest
|