Skip to content

Commit c695cf6

Browse files
committed
Add support for Node version 8
1 parent c1c7b7a commit c695cf6

File tree

5 files changed

+16
-3
lines changed

5 files changed

+16
-3
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ sudo: true
1313
node_js:
1414
# Node.js
1515
- 'node'
16+
- '8'
1617
- '7'
1718
- '6'
1819
- '5'

appveyor.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@ environment:
3333

3434
matrix:
3535
# Unit tests:
36+
- nodejs_version: '8'
37+
npm_version: '>2.7.0'
38+
BUILD_TASK: 'test'
3639
- nodejs_version: '7'
3740
npm_version: '>2.7.0'
3841
BUILD_TASK: 'test'
@@ -53,6 +56,9 @@ environment:
5356
BUILD_TASK: 'test'
5457

5558
# Benchmarks:
59+
- nodejs_version: '8'
60+
npm_version: '>2.7.0'
61+
BUILD_TASK: 'benchmark'
5662
- nodejs_version: '7'
5763
npm_version: '>2.7.0'
5864
BUILD_TASK: 'benchmark'
@@ -73,6 +79,9 @@ environment:
7379
BUILD_TASK: 'benchmark'
7480

7581
# Examples:
82+
- nodejs_version: '8'
83+
npm_version: '>2.7.0'
84+
BUILD_TASK: 'examples'
7685
- nodejs_version: '7'
7786
npm_version: '>2.7.0'
7887
BUILD_TASK: 'examples'
@@ -93,6 +102,9 @@ environment:
93102
BUILD_TASK: 'examples'
94103

95104
# Test coverage:
105+
- nodejs_version: '8'
106+
npm_version: '>2.7.0'
107+
BUILD_TASK: 'test-coverage'
96108
- nodejs_version: '7'
97109
npm_version: '>2.7.0'
98110
BUILD_TASK: 'test-coverage'

circle.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ machine:
88

99
# Version of Node.js to use:
1010
node:
11-
version: 6
11+
version: 8
1212

1313

1414
# Custom environment dependencies:

tools/make/common.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ endif
99
# GENERAL VARIABLES #
1010

1111
# Define supported Node.js versions:
12-
NODE_VERSIONS ?= '0.10 0.12 1 2 3 4 5 6 7 node'
12+
NODE_VERSIONS ?= '0.10 0.12 1 2 3 4 5 6 7 8 node'
1313

1414
# Define a license SPDX identifier whitelist:
1515
LICENSES_WHITELIST ?= 'Apache-2.0,Artistic-2.0,BSD-2-Clause,BSD-3-Clause,BSL-1.0,CC0-1.0,ISC,MIT,MPL-2.0,Unlicense,WTFPL'

tools/scripts/node_versions_run_script

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
# VARIABLES #
2121

2222
# Define the Node.js versions:
23-
versions=(0.10 0.12 1 2 3 4 5 6 7 node)
23+
versions=(0.10 0.12 1 2 3 4 5 6 7 8 node)
2424

2525
# Set a flag indicating whether to perform a fresh install of node module dependencies for each Node.js version:
2626
install_deps=false

0 commit comments

Comments
 (0)