File: appveyor.yml

package info (click to toggle)
node-addon-api 8.6.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,272 kB
  • sloc: cpp: 15,754; javascript: 5,714; ansic: 157; makefile: 7
file content (37 lines) | stat: -rw-r--r-- 706 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
environment:
  # https://github.com/jasongin/nvs/blob/HEAD/doc/CI.md
  NVS_VERSION: 1.4.2
  matrix:
    - NODEJS_VERSION: node/10
    - NODEJS_VERSION: node/12
    - NODEJS_VERSION: node/14
    - NODEJS_VERSION: nightly

os: Visual Studio 2017
platform:
  - x86
  - x64

install:
  # nvs
  - git clone --branch v%NVS_VERSION% --depth 1 https://github.com/jasongin/nvs %LOCALAPPDATA%\nvs
  - set PATH=%LOCALAPPDATA%\nvs;%PATH%
  - nvs --version
  # node.js
  - nvs add %NODEJS_VERSION%/%PLATFORM%
  - nvs use %NODEJS_VERSION%/%PLATFORM%
  - node --version
  - node -p process.arch
  - npm --version
  # app
  - npm install

test_script:
  - npm test

build: off

version: "{build}"

cache:
  - node_modules