-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathappveyor.yml
41 lines (33 loc) · 1 KB
/
appveyor.yml
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
# appveyor file
# http://www.appveyor.com/docs/appveyor-yml
project_id: "e5a5q75l9yfhnfv2"
# Try out "interactive-mode"
os: unstable
# build version format
version: "{build}"
# Set a known clone folder
clone_folder: c:\projects\nodegit
# fix lineendings in Windows
init:
- git config --global core.autocrlf input
# what combinations to test
environment:
matrix:
- nodejs_version: 0.11
- nodejs_version: 0.10
# Get the latest stable version of Node 0.STABLE.latest
install:
- ps: Update-NodeJsInstallation (Get-NodeJsLatestBuild $env:nodejs_version)
- cmd: SET PATH=C:\Program Files (x86)\MSBuild\12.0\bin\;%PATH%
- cmd: SET PATH=c:\python27;%PATH%
- cmd: SET JOBS=4
- cmd: SET BUILD_ONLY=true
- cmd: SET GIT_SSH=c:\projects\nodegit\vendor\plink.exe
- ps: Start-Process c:\projects\nodegit\vendor\pageant.exe c:\projects\nodegit\vendor\private.ppk
- cmd: npm install -g node-gyp
- npm install --msvs_version=2013
test_script:
- node --version
- npm --version
- cmd: npm test
build: off