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
5 changes: 5 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
sudo: false
# update to Xenial in April 2019; Trusty will be EOL, Xenial new minimum supported OS version
dist: trusty

branches:
only:
Expand Down Expand Up @@ -34,10 +36,12 @@ jobs:
include:
- stage: "Extended testing"
os: linux
dist: xenial
node_js: "8"
env: TARGET_ARCH="x64" EXTENDED_TESTING="false"
- stage: "Deploy documentation"
os: linux
dist: xenial
node_js: "8"
env: TARGET_ARCH="x64" DEPLOY_DOCUMENTATION="true"

Expand Down Expand Up @@ -74,6 +78,7 @@ before_install:
fi

install:
- set -e;
- travis_retry npm install;

# This is a random private key used purely for testing.
Expand Down
10 changes: 5 additions & 5 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# appveyor file
# http://www.appveyor.com/docs/appveyor-yml
# https://www.appveyor.com/docs/appveyor-yml/

image: Visual Studio 2015

Expand All @@ -13,7 +13,7 @@ version: "{build}"
# Set a known clone folder
clone_folder: c:\projects\nodegit

# fix lineendings in Windows
# fix line endings in Windows
init:
- git config --global core.autocrlf input
- git config --global user.name "John Doe"
Expand All @@ -26,9 +26,9 @@ environment:
GYP_MSVS_VERSION: 2015
matrix:
# Node.js
- nodejs_version: "6"
- nodejs_version: "8"
- nodejs_version: "10"
- nodejs_version: "8"
- nodejs_version: "6"

matrix:
fast_finish: true
Expand All @@ -39,7 +39,7 @@ install:
- ps: Install-Product node $env:nodejs_version $env:platform
- ps: Start-Process c:\projects\nodegit\vendor\pageant.exe c:\projects\nodegit\vendor\private.ppk
- npm install -g npm
- cmd: npm install -g node-gyp
- npm install -g node-gyp
- appveyor-retry call npm install

test_script:
Expand Down
79 changes: 50 additions & 29 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@
"lib": "./lib"
},
"engines": {
"node": ">= 4"
"node": ">= 6"
},
"dependencies": {
"fs-extra": "^7.0.0",
"lodash": "^4.13.1",
"nan": "^2.10.0",
"lodash": "^4.17.11",
"nan": "^2.11.1",
"node-gyp": "^3.8.0",
"node-pre-gyp": "^0.11.0",
"promisify-node": "~0.3.0",
Expand All @@ -49,7 +49,7 @@
"tar-fs": "^1.16.3"
},
"devDependencies": {
"aws-sdk": "^2.3.19",
"aws-sdk": "^2.326.0",
"babel-cli": "^6.7.7",
"babel-preset-es2015": "^6.6.0",
"cheerio": "^1.0.0-rc.2",
Expand All @@ -64,7 +64,7 @@
"walk": "^2.3.9"
},
"vendorDependencies": {
"libssh2": "1.7.0",
"libssh2": "1.8.0",
"http_parser": "2.5.0"
},
"binary": {
Expand Down