-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappveyor.yml
More file actions
62 lines (56 loc) · 1.54 KB
/
appveyor.yml
File metadata and controls
62 lines (56 loc) · 1.54 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
environment:
matrix:
- PYTHON: "C:\\Python26-x64"
nodejs_version: "8"
- PYTHON: "C:\\Python27-x64"
nodejs_version: "8"
- PYTHON: "C:\\Python33-x64"
nodejs_version: "8"
- PYTHON: "C:\\Python34-x64"
nodejs_version: "8"
- PYTHON: "C:\\Python35-x64"
nodejs_version: "8"
- PYTHON: "C:\\Python36-x64"
nodejs_version: "8"
- PYTHON: "C:\\Python26-x64"
nodejs_version: "7"
- PYTHON: "C:\\Python27-x64"
nodejs_version: "7"
- PYTHON: "C:\\Python33-x64"
nodejs_version: "7"
- PYTHON: "C:\\Python34-x64"
nodejs_version: "7"
- PYTHON: "C:\\Python35-x64"
nodejs_version: "7"
- PYTHON: "C:\\Python36-x64"
nodejs_version: "7"
- PYTHON: "C:\\Python26-x64"
nodejs_version: "6"
- PYTHON: "C:\\Python27-x64"
nodejs_version: "6"
- PYTHON: "C:\\Python33-x64"
nodejs_version: "6"
- PYTHON: "C:\\Python34-x64"
nodejs_version: "6"
- PYTHON: "C:\\Python35-x64"
nodejs_version: "6"
- PYTHON: "C:\\Python36-x64"
nodejs_version: "6"
# Install scripts. (runs after repo cloning)
install:
# Prepend Python 3 to the PATH of this build
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
# Get the latest stable version of Node.js or io.js
- ps: Install-Product node $env:nodejs_version x64
# install modules
- npm install
# Post-install test scripts.
test_script:
# Output useful info for debugging.
- python --version
- node --version
- npm --version
# Test
- npm test
# Don't actually build.
build: off