Skip to content

Commit

Permalink
Remove node 6, use prebuildify fork for now, build on node 8 (#562)
Browse files Browse the repository at this point in the history
* Remove node 6, use prebuildify fork for now, build on node 8

* Hardcode node version for now

* I said node 8! :)
  • Loading branch information
ralphtheninja authored Dec 16, 2018
1 parent 15536f9 commit 0e88cde
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ os:
- linux

node_js:
- 6
- 8
- 10
- node
Expand All @@ -28,4 +27,4 @@ deploy:
skip_cleanup: true
on:
tags: true
node: 'node'
node: '8'
5 changes: 2 additions & 3 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ skip_branch_with_pr: true

environment:
matrix:
- nodejs_version: "6"
- nodejs_version: "8"
- nodejs_version: "10"
- nodejs_version: "Current"
Expand All @@ -25,7 +24,7 @@ test_script:
- npm test

after_test:
- ps: If ($env:nodejs_version -eq "Current") { npm run prebuild }
- ps: If ($env:nodejs_version -eq "8") { npm run prebuild }

artifacts:
- path: prebuilds
Expand All @@ -40,4 +39,4 @@ deploy:
draft: false
on:
appveyor_repo_tag: true
nodejs_version: "Current"
nodejs_version: "8"
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"node-gyp": "^3.8.0",
"nyc": "^12.0.2",
"optimist": "~0.6.1",
"prebuildify": "^2.9.1",
"prebuildify": "ralphtheninja/prebuildify",
"prebuildify-ci": "^1.0.4",
"readfiletree": "~0.0.1",
"remark-cli": "^5.0.0",
Expand All @@ -47,7 +47,7 @@
"test": "standard && nyc tape test/*-test.js",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"rebuild": "node-gyp rebuild",
"prebuild": "prebuildify --napi --strip",
"prebuild": "prebuildify -t 8.14.0 -t electron@3.0.0 --napi --strip",
"download-prebuilds": "prebuildify-ci download",
"changelog": "remark CHANGELOG.md -o"
},
Expand Down

0 comments on commit 0e88cde

Please sign in to comment.