Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
56 lines (46 loc) · 1.25 KB

File metadata and controls

56 lines (46 loc) · 1.25 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
# appveyor file
# http://www.appveyor.com/docs/appveyor-yml
# Try out "interactive-mode"
os: Windows Server 2012 R2
# 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
- git config --global user.name "John Doe"
- git config --global user.email johndoe@example.com
# what combinations to test
environment:
matrix:
# Node.js
- nodejs_version: "0.10"
- nodejs_version: "0.12"
# io.js
- nodejs_version: "1"
matrix:
fast_finish: true
allow_failures:
- nodejs_version: "0.10"
- nodejs_version: "1"
# Get the latest stable version of Node 0.STABLE.latest
install:
- ps: Install-Product node $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
branches:
only:
- master
- v0.3
Morty Proxy This is a proxified and sanitized view of the page, visit original site.