Skip to content

Commit

Permalink
ci: update for node 8
Browse files Browse the repository at this point in the history
  • Loading branch information
clydin authored and hansl committed Feb 20, 2018
1 parent 804472d commit 77d2cd3
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 25 deletions.
2 changes: 1 addition & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
environment:
matrix:
- nodejs_version: "6"
- nodejs_version: "8"

matrix:
fast_finish: true
Expand Down
34 changes: 10 additions & 24 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,7 @@ matrix:
fast_finish: true
allow_failures:
- env: nightly
- env: ng2
- node_js: "7"
- node_js: "8"
- env: node9
include:
# Build stage
- stage: build
Expand All @@ -36,49 +34,37 @@ matrix:
- stage: test
script: npm run test
env: test
- node_js: "6"
- node_js: "8"
os: linux
script: node tests/run_e2e.js --nb-shards=4 --shard=0 --nosilent
env: e2e-0
- node_js: "6"
- node_js: "8"
os: linux
script: node tests/run_e2e.js --nb-shards=4 --shard=1 --nosilent
env: e2e-1
- node_js: "6"
- node_js: "8"
os: linux
script: node tests/run_e2e.js --nb-shards=4 --shard=2 --nosilent
env: e2e-2
- node_js: "6"
- node_js: "8"
os: linux
script: node tests/run_e2e.js --nb-shards=4 --shard=3 --nosilent
env: e2e-3
- node_js: "6"
- node_js: "8"
os: linux
script: node tests/run_e2e.js --eject "--glob=tests/build/**"
env: eject

# Optional stage.
- stage: optional
node_js: "6"
os: linux
script: node tests/run_e2e.js --ng2 "--glob=tests/build/**"
env: ng2
- node_js: "6"
os: linux
script: node tests/run_e2e.js --ng4 "--glob=tests/build/**"
env: ng4
- node_js: "6"
node_js: "8"
os: linux
script: node tests/run_e2e.js --nightly "--glob=tests/build/**"
env: nightly
- node_js: "7"
os: linux
script: node tests/run_e2e.js "--glob=tests/build/**"
env: node7
- node_js: "8"
- node_js: "9"
os: linux
script: node tests/run_e2e.js "--glob=tests/build/**"
env: node8
env: node9

# Deploy stage
- stage: deploy
Expand All @@ -102,7 +88,7 @@ matrix:

before_install:
# Install npm 5.
- npm install -g npm@~5.3.0
- npm install -g npm@~5.5.1

install:
- npm install
Expand Down

0 comments on commit 77d2cd3

Please sign in to comment.