Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
env:
matrix:
- export NODE_VERSION="0.10"
- export NODE_VERSION="0.12"
- export NODE_VERSION="iojs"
matrix:
fast_finish: true
allow_failures:
- env: NODE_VERSION="0.10"
- env: NODE_VERSION="iojs"
before_install:
- git clone https://github.com/creationix/nvm.git ./.nvm
- source ./.nvm/nvm.sh
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ NodeGit
</tbody>
</table>

***NOTE: NodeGit currently does not work with [iojs on windows](https://github.com/rvagg/pangyp/issues/4)***

**Stable: 0.2.7**

## Have a problem? Come chat with us! ##
Expand Down
14 changes: 12 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,21 @@ init:
# what combinations to test
environment:
matrix:
- nodejs_version: 0.10
# 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: Update-NodeJsInstallation (Get-NodeJsLatestBuild $env:nodejs_version)
- 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
Expand Down
9 changes: 9 additions & 0 deletions generate/templates/templates/binding.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,15 @@
]
}
}
], [
"OS=='win'", {
"cflags": [
"/EHsc"
],
"defines": [
"_HAS_EXCEPTIONS=1"
]
}
]
]
}
Expand Down
2 changes: 1 addition & 1 deletion lifecycleScripts/install.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ function build() {
var prefix = "";
var target = "";
var debug = (process.env.BUILD_DEBUG ? " --debug" : "");
var builder = "node-gyp";
var builder = "pangyp";
var distUrl = "";

if (asVersion) {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@
"lodash": "^3.1.0",
"mocha": "~2.1.0",
"nan": "^1.7.0",
"node-gyp": "~1.0.2",
"nw-gyp": "^0.12.4",
"pangyp": "^2.1.0",
"request": "^2.53.0",
"tar": "^1.0.3"
},
Expand Down
2 changes: 1 addition & 1 deletion vendor/libgit2.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@
"libgit2/src/hash.c",
"libgit2/src/hash.h",
"libgit2/src/hashsig.c",
"libgit2/src/hashsig.h",
"libgit2/include/git2/sys/hashsig.h",
"libgit2/src/ident.c",
"libgit2/src/ignore.c",
"libgit2/src/ignore.h",
Expand Down