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

Remove outdated Node builds #134

Closed
wants to merge 5 commits into from
Closed
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
20 changes: 7 additions & 13 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,23 +13,20 @@ env:
global:
- secure: "AIpbFdTVntCzsjRqdfQYog1fxoiHLHaJCLEsIKfRtP4OD9c+Abejc/TF2uRhHvwL4Qux4AVLE1DDOsElt6MRC9rooJYehlYBc8lWYz2nx92DvaivNmDHs2UG63+s3cF6vaaBKOpFuHuEUfoTjUtwZYWy+p88HT9EsU6AD3096BA="
matrix:
- TRAVIS_NODE_VERSION="4"
- TRAVIS_NODE_VERSION="4" ARCH="x86"
- TRAVIS_NODE_VERSION="6"
- TRAVIS_NODE_VERSION="6" ARCH="x86"
- BINARY_BUILDER="true" TRAVIS_NODE_VERSION="8"
- BINARY_BUILDER="true" TRAVIS_NODE_VERSION="8" ARCH="x86"
- BINARY_BUILDER="true" TRAVIS_NODE_VERSION="10"
- BINARY_BUILDER="true" TRAVIS_NODE_VERSION="12"
- BINARY_BUILDER="true" TRAVIS_NODE_VERSION="13"
- BINARY_BUILDER="true" TRAVIS_NODE_VERSION="14"
matrix:
exclude:
- os: osx
env: TRAVIS_NODE_VERSION="4" ARCH="x86"
env: BINARY_BUILDER="true" TRAVIS_NODE_VERSION="10" ARCH="x86"
- os: osx
env: TRAVIS_NODE_VERSION="6" ARCH="x86"
env: BINARY_BUILDER="true" TRAVIS_NODE_VERSION="12" ARCH="x86"
- os: osx
env: BINARY_BUILDER="true" TRAVIS_NODE_VERSION="8" ARCH="x86"
env: BINARY_BUILDER="true" TRAVIS_NODE_VERSION="13" ARCH="x86"
- os: osx
env: BINARY_BUILDER="true" TRAVIS_NODE_VERSION="14" ARCH="x86"

cache:
directories:
Expand Down Expand Up @@ -83,7 +80,4 @@ script:
- echo "Skipping tests on CI, as they currently require manual interaction."

# if publishing, do it
- >
if [[ $PUBLISH_BINARY == true ]]; then
npm run prebuild;
fi;
- npm run prebuild
8 changes: 3 additions & 5 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,17 @@
environment:
nodejs_version: "8"
nodejs_version: "10"
prebuild_upload:
secure: BDiKaYwmeMVpwJdnXMx4k0+5aKmFzJT2qR+fHn03SPovO7K3QPz8RewH4WRRp9Qs

matrix:
- nodejs_version: "4"
- nodejs_version: "6"
- binary_builder: "true"
nodejs_version: "8"
- binary_builder: "true"
nodejs_version: "10"
- binary_builder: "true"
nodejs_version: "12"
- binary_builder: "true"
nodejs_version: "13"
- binary_builder: "true"
nodejs_version: "14"

platform:
- x86
Expand Down
Loading