chore: drop Node.js v4 support (#124)

This is a BREAKING CHANGE.

<!--
Please make sure the checklist boxes are all checked before submitting the PR. The checklist
is intended as a quick reference, for complete details please see our Contributor Guidelines:

http://cordova.apache.org/contribute/contribute_guidelines.html

Thanks!
-->

### Platforms affected

n/a - development

### What does this PR do?

Drop Node.js v4 support and bumps the CI images to Node.js v6

### What testing has been done on this change?

TravisCI and Appveyor test results.

### Checklist
- [ ] [Reported an issue](http://cordova.apache.org/contribute/issues.html) in the JIRA database
- [ ] Commit message follows the format: "CB-3232: (android) Fix bug with resolving file paths", where CB-xxxx is the JIRA ID & "android" is the platform affected.
- [ ] Added automated test coverage as appropriate for this change.
This commit is contained in:
Tim Brust 2019-02-21 10:57:31 +01:00 committed by Jan Piotrowski
parent 727eea3f5c
commit a07612a299
3 changed files with 71 additions and 88 deletions

View File

@ -12,12 +12,19 @@ image:
- Visual Studio 2017 - Visual Studio 2017
environment: environment:
nodejs_version: "4" PLATFORM: windows-10-store
JUST_BUILD: --justBuild
matrix: matrix:
- PLATFORM: windows-10-store - nodejs_version: "6"
JUST_BUILD: --justBuild - nodejs_version: "8"
- nodejs_version: "10"
platform:
- x86
- x64
install: install:
- npm cache clean -f - ps: Install-Product node $env:nodejs_version
- node --version - node --version
- npm install -g cordova-paramedic@https://github.com/apache/cordova-paramedic.git - npm install -g cordova-paramedic@https://github.com/apache/cordova-paramedic.git
- npm install -g cordova - npm install -g cordova

9
.gitignore vendored
View File

@ -13,12 +13,3 @@ Thumbs.db
*.user *.user
node_modules node_modules

View File

@ -1,86 +1,71 @@
sudo: false sudo: false
addons: addons:
jwt: jwt:
secure: Rd/wGSUWGWbc0Y/vqPgI29nybq+j/zWilEIOCBJeRQVwfubdbJNZUIb5DFlSSVzMEavkxZ0PYJ45h21iXyWo3aOoxUJwhkO7QZNzW2MsYzy9qpiKK1jOESXMrpboRWoxg+BL85YbaDF3u1XRy+Xm1nraStT6mDfx5LlUG1Lac6A= secure: Rd/wGSUWGWbc0Y/vqPgI29nybq+j/zWilEIOCBJeRQVwfubdbJNZUIb5DFlSSVzMEavkxZ0PYJ45h21iXyWo3aOoxUJwhkO7QZNzW2MsYzy9qpiKK1jOESXMrpboRWoxg+BL85YbaDF3u1XRy+Xm1nraStT6mDfx5LlUG1Lac6A=
env: env:
global: global:
- SAUCE_USERNAME=snay - SAUCE_USERNAME=snay
- TRAVIS_NODE_VERSION="4.2" - TRAVIS_NODE_VERSION=6
language: node_js
node_js: 6
matrix: matrix:
include: include:
- env: PLATFORM=browser-chrome - env: PLATFORM=browser-chrome
os: linux - env: PLATFORM=browser-firefox
language: node_js - env: PLATFORM=browser-safari
node_js: '4.2' - env: PLATFORM=browser-edge
- env: PLATFORM=browser-firefox - env: PLATFORM=ios-9.3
os: linux os: osx
language: node_js osx_image: xcode7.3
node_js: '4.2' - env: PLATFORM=ios-10.0
- env: PLATFORM=browser-safari os: osx
os: linux osx_image: xcode7.3
language: node_js - env: PLATFORM=android-4.4
node_js: '4.2' language: android
- env: PLATFORM=browser-edge jdk: oraclejdk8
os: linux android:
language: node_js components:
node_js: '4.2' - tools
- env: PLATFORM=ios-9.3 - build-tools-26.0.2
os: osx - env: PLATFORM=android-5.1
osx_image: xcode7.3 language: android
language: node_js jdk: oraclejdk8
node_js: '4.2' android:
- env: PLATFORM=ios-10.0 components:
os: osx - tools
osx_image: xcode7.3 - build-tools-26.0.2
language: node_js - env: PLATFORM=android-6.0
node_js: '4.2' language: android
- env: PLATFORM=android-4.4 jdk: oraclejdk8
os: linux android:
language: android components:
jdk: oraclejdk8 - tools
android: - build-tools-26.0.2
components: - env: PLATFORM=android-7.0
- tools language: android
- build-tools-26.0.2 jdk: oraclejdk8
- env: PLATFORM=android-5.1 android:
os: linux components:
language: android - tools
jdk: oraclejdk8 - build-tools-26.0.2
android:
components:
- tools
- build-tools-26.0.2
- env: PLATFORM=android-6.0
os: linux
language: android
jdk: oraclejdk8
android:
components:
- tools
- build-tools-26.0.2
- env: PLATFORM=android-7.0
os: linux
language: android
jdk: oraclejdk8
android:
components:
- tools
- build-tools-26.0.2
before_install: before_install:
- rm -rf ~/.nvm && git clone https://github.com/creationix/nvm.git ~/.nvm && (cd ~/.nvm # `language: android` has no Node.js installed, therefore we need to install it manually
&& git checkout `git describe --abbrev=0 --tags`) && source ~/.nvm/nvm.sh && nvm - if [[ "$PLATFORM" =~ android ]]; then nvm install $TRAVIS_NODE_VERSION; fi
install $TRAVIS_NODE_VERSION - node --version
- node --version - if [[ "$PLATFORM" =~ android ]]; then gradle --version; fi
- if [[ "$PLATFORM" =~ android ]]; then gradle --version; fi - if [[ "$PLATFORM" =~ ios ]]; then npm install -g ios-deploy; fi
- if [[ "$PLATFORM" =~ ios ]]; then npm install -g ios-deploy; fi - if [[ "$PLATFORM" =~ android ]]; then echo y | android update sdk -u --filter android-22,android-23,android-24,android-25,android-26,android-27; fi
- if [[ "$PLATFORM" =~ android ]]; then echo y | android update sdk -u --filter android-22,android-23,android-24,android-25,android-26,android-27; - npm install -g cordova-paramedic@https://github.com/apache/cordova-paramedic.git
fi - npm install -g cordova
- git clone https://github.com/apache/cordova-paramedic /tmp/paramedic && pushd /tmp/paramedic
&& npm install && popd
- npm install -g cordova
install: install:
- npm install - npm install
script: script:
- npm test - npm test
- node /tmp/paramedic/main.js --config pr/$PLATFORM --plugin $(pwd) --shouldUseSauce - cordova-paramedic --config pr/$PLATFORM --plugin $TRAVIS_BUILD_DIR --shouldUseSauce --buildName travis-$TRAVIS_REPO_SLUG-$TRAVIS_JOB_NUMBER
--buildName travis-plugin-statusbar-$TRAVIS_JOB_NUMBER