Skip to content

Commit

Permalink
ci: remove Node.js 6, 11
Browse files Browse the repository at this point in the history
PR-URL: #87
  • Loading branch information
addaleax authored Nov 23, 2019
1 parent 3ab1df1 commit 607c4f4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
9 changes: 3 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,9 @@ compiler:
- clang
- gcc
env:
- TRAVIS_NODE_VERSION="8.10" npm_config_runtime="electron" npm_config_target="1.7.3" npm_config_dist_url=https://atom.io/download/electron
- TRAVIS_NODE_VERSION="8.10" npm_config_runtime="electron" npm_config_target="2.0.5" npm_config_dist_url=https://atom.io/download/electron
- TRAVIS_NODE_VERSION="6"
- TRAVIS_NODE_VERSION="8.10"
- TRAVIS_NODE_VERSION="10"
- TRAVIS_NODE_VERSION="11"
- TRAVIS_NODE_VERSION="12"
- TRAVIS_NODE_VERSION="13"
os:
Expand All @@ -22,7 +19,7 @@ addons:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.9
- g++-8
before_install:
- echo "$TRAVIS_NODE_VERSION"
- export "PATH=./node_modules/.bin:$PWD/node_modules/.bin:$HOME/.local/bin:$PATH"
Expand All @@ -34,7 +31,7 @@ before_install:
- if [ -z "$TRAVIS_TAG" -a "$TRAVIS_OS_NAME" = "linux" ]; then export DO_COVERAGE=1; fi
- if [ -n "$DO_COVERAGE" ]; then pip install --user cpp-coveralls coveralls-merge; fi
# compilers
- if [ "$CXX" = "g++" -a "$TRAVIS_OS_NAME" = "linux" ]; then export CXX="g++-4.9" CC="gcc-4.9" AR="gcc-ar-4.9" RANLIB="gcc-ranlib-4.9" NM="gcc-nm-4.9" ; fi
- if [ "$CXX" = "g++" -a "$TRAVIS_OS_NAME" = "linux" ]; then export CXX="g++-8" CC="gcc-8" AR="gcc-ar-8" RANLIB="gcc-ranlib-8" NM="gcc-nm-8" ; fi
- if [ "$CXX" = "clang++" ]; then export npm_config_clang=1 ; fi
# node versions
- rm -rf ~/.nvm
Expand All @@ -58,4 +55,4 @@ after_success:
- if [ -n "$DO_COVERAGE" ]; then coveralls-merge coverage/jsfiles.json coverage/cppfiles.json; fi
# publish for node-pre-gyp
- node-pre-gyp package
- if [ -n "$TRAVIS_TAG" ] && ([ $CXX = "g++" ] || [ $CXX = "g++-4.9" ]); then echo 'put build/stage/lzma-native/* uploads/lzma-native/' |sftp -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -b- -i .travis.id_rsa node-pre-gyp@addaleax.net; fi
- if [ -n "$TRAVIS_TAG" ] && ([ $CXX = "g++" ] || [ $CXX = "g++-8" ]); then echo 'put build/stage/lzma-native/* uploads/lzma-native/' |sftp -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -b- -i .travis.id_rsa node-pre-gyp@addaleax.net; fi
2 changes: 0 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,8 @@ environment:
matrix:
- nodejs_version: "13"
- nodejs_version: "12"
- nodejs_version: "11"
- nodejs_version: "10"
- nodejs_version: "8"
- nodejs_version: "6"

platform:
- x86
Expand Down

0 comments on commit 607c4f4

Please sign in to comment.