Skip to content

chore(ci): use node 4 instead of 5 #2469

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 2, 2016
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
3 changes: 2 additions & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
environment:
matrix:
- nodejs_version: "5.0"
- nodejs_version: "4.0"
- nodejs_version: "6.0"

matrix:
fast_finish: true

install:
- ps: Install-Product node $env:nodejs_version
- npm install -g npm
- npm install

test_script:
Expand Down
42 changes: 25 additions & 17 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,9 @@ dist: trusty
sudo: required
language: node_js
node_js:
- "5"
- "6"
- "4"
os:
- linux
- osx
env:
global:
- DBUS_SESSION_BUS_ADDRESS=/dev/null
Expand All @@ -20,25 +18,34 @@ env:
matrix:
fast_finish: true
allow_failures:
- node_js: "5"
- os: osx
- env: NODE_SCRIPT="tests/e2e_runner.js --nightly"
exclude:
include:
- node_js: "5"
os: linux
env: SCRIPT=test
- node_js: "5"
os: linux
env: NODE_SCRIPT=tests/e2e_runner.js
- node_js: "6"
env: SCRIPT=lint
- os: osx
env: NODE_SCRIPT="tests/e2e_runner.js --nightly"
os: linux
env: SCRIPT=test
- node_js: "6"
env: NODE_SCRIPT="tests/e2e_runner.js --nightly"
- os: osx
node_js: "5"
env: SCRIPT=lint
os: linux
env: NODE_SCRIPT=tests/e2e_runner.js
- node_js: "4"
os: osx
env: SCRIPT=test
- node_js: "4"
os: osx
env: NODE_SCRIPT=tests/e2e_runner.js
- node_js: "6"
env: SCRIPT=build
- os: osx
node_js: "5"
env: SCRIPT=build
- os: osx
env: TARGET=mobile SCRIPT=mobile_test
os: osx
env: SCRIPT=test
- node_js: "6"
os: osx
env: NODE_SCRIPT=tests/e2e_runner.js

before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi
Expand All @@ -50,6 +57,7 @@ before_install:
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then export CHROME_BIN=chromium-browser; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then echo "--no-sandbox" > ~/.config/chromium-flags.conf; fi
- if [[ "$TARGET" == "mobile" ]]; then export MOBILE_TEST=true; fi
- npm install -g npm
- npm config set spin false
- npm config set progress false

Expand Down