Skip to content
This repository has been archived by the owner on Sep 13, 2023. It is now read-only.

Commit

Permalink
Merge pull request #40 from kesla/windows
Browse files Browse the repository at this point in the history
add windows CI
  • Loading branch information
hex7c0 committed Feb 6, 2015
2 parents 06683ef + 7b5c66f commit 46e1269
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 8 deletions.
12 changes: 12 additions & 0 deletions appveyor.yml
@@ -0,0 +1,12 @@
environment:
matrix:
- nodejs_version: "0.10"
- nodejs_version: "0.11"
install:
- ps: Update-NodeJsInstallation (Get-NodeJsLatestBuild $env:nodejs_version)
- npm install
build: off
test_script:
- node --version
- npm --version
- npm test
10 changes: 3 additions & 7 deletions binding.gyp
Expand Up @@ -2,13 +2,9 @@
'targets': [
{
'target_name': 'binding',
'include_dirs': ["<!(node -e \"require('nan')\")"],
'dependencies': [
'<(module_root_dir)/deps/snappy/snappy.gyp:snappy'
],
'sources': [
'src/binding.cc'
]
'include_dirs': [ '<!(node -e "require(\'nan\')")' ],
'dependencies': [ 'deps/snappy/snappy.gyp:snappy' ],
'sources': [ 'src/binding.cc' ]
}
]
}
2 changes: 1 addition & 1 deletion readme.md
@@ -1,4 +1,4 @@
# snappy [![build status](https://secure.travis-ci.org/kesla/node-snappy.svg)](http://travis-ci.org/kesla/node-snappy)
# snappy [![Linux Status](https://img.shields.io/travis/kesla/node-snappy.svg?label=linux)](https://travis-ci.org/kesla/node-snappy) [![Windows Status](https://img.shields.io/appveyor/ci/hex7c0/node-snappy.svg?label=windows)](https://ci.appveyor.com/project/hex7c0/node-snappy)

Nodejs bindings to the [snappy](github.com/google/snappy) compression library

Expand Down

0 comments on commit 46e1269

Please sign in to comment.