-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto-merge for PR #11 via VersionBot
Set up automated pre-gyp publishing for ext2fs
- Loading branch information
Showing
10 changed files
with
113 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
node_modules | ||
/build | ||
/pregyp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,33 @@ | ||
language: node_js | ||
|
||
os: | ||
- linux | ||
- osx | ||
|
||
node_js: | ||
- "6" | ||
- "7" | ||
- "8" | ||
env: | ||
- CXX=g++-4.8 | ||
- "9" | ||
|
||
addons: | ||
apt: | ||
sources: | ||
- ubuntu-toolchain-r-test | ||
packages: | ||
- g++-4.8 | ||
|
||
install: | ||
- npm install --build-from-source | ||
|
||
notifications: | ||
email: false | ||
|
||
deploy: | ||
provider: script | ||
script: npm run pre-gyp-release | ||
skip_cleanup: true | ||
on: | ||
# Deploys happen for all tagged releases | ||
tags: true | ||
repo: resin-io/node-ext2fs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "ext2fs", | ||
"version": "0.0.15", | ||
"version": "0.1.0", | ||
"description": "NodeJS native bindings to the libext2fs for cross-platform ext filesystem handling", | ||
"author": "Petros Angelatos <[email protected]>", | ||
"contributors": [ | ||
|
@@ -17,18 +17,30 @@ | |
"test": "mocha", | ||
"publish-please": "publish-please", | ||
"prepublish": "publish-please guard", | ||
"install": "node-gyp rebuild" | ||
"install": "node-pre-gyp install --fallback-to-build", | ||
"pre-gyp-release": "node-pre-gyp rebuild package && node-pre-gyp-github publish --release" | ||
}, | ||
"binary": { | ||
"module_name": "bindings", | ||
"module_path": "pregyp", | ||
"host": "https://github.com/resin-io/node-ext2fs/releases/download/", | ||
"remote_path": "{version}" | ||
}, | ||
"dependencies": { | ||
"async": "^2.4.1", | ||
"bindings": "^1.2.1", | ||
"eslint": "^3.19.0", | ||
"file-disk": "^1.0.0", | ||
"nan": "^2.5.1" | ||
"nan": "^2.5.1", | ||
"node-pre-gyp": "^0.6.39" | ||
}, | ||
"bundledDependencies": [ | ||
"node-pre-gyp" | ||
], | ||
"devDependencies": { | ||
"bluebird": "^3.4.7", | ||
"mocha": "^3.2.0", | ||
"node-pre-gyp-github": "^1.3.1", | ||
"publish-please": "^2.2.0" | ||
}, | ||
"homepage": "https://github.com/resin-io/node-ext2fs#readme", | ||
|
@@ -48,4 +60,4 @@ | |
"bugs": { | ||
"url": "https://github.com/resin-io/node-ext2fs/issues" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters