Skip to content

Commit 6ae18cc

Browse files
committed
[misc] removing node.js 6 from CI, ESLint 6 requiring 8 or newer
1 parent 4da0e5a commit 6ae18cc

File tree

3 files changed

+2
-9
lines changed

3 files changed

+2
-9
lines changed

.travis.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,6 @@ matrix:
4444
include:
4545
- node_js: "12"
4646
env: DB=build
47-
- node_js: "6"
48-
env: DB=mariadb:10.4 SKIP_LEAK=1
4947
- node_js: "8"
5048
env: DB=mariadb:10.4
5149
- node_js: "10"

.travis/script.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ else
2525
docker-compose -f .travis/docker-compose.yml up -d
2626
fi
2727

28-
if [ -z "$SKIP_LEAK" ] ; then npm install node-memwatch; fi
28+
npm install node-memwatch
2929

3030
node .travis/wait-for-docker-up.js
3131

appveyor.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,6 @@ environment:
1212
TEST_LOG_PACKETS: true
1313
matrix:
1414

15-
- DB: '10.4.6'
16-
MEM: "21"
17-
nodejs_version: "6"
18-
SKIP_LEAK: "1"
19-
2015
- DB: '10.4.6'
2116
MEM: "21"
2217
nodejs_version: "8"
@@ -92,7 +87,7 @@ build: off
9287

9388
test_script:
9489
- node --version
95-
- if "%SKIP_LEAK%" == "" npm install node-memwatch
90+
- npm install node-memwatch
9691
- if "%BENCH%" == "1" ( npm install microtime ) else ( npm test )
9792
- if "%BENCH%" == "1" ( npm install promise-mysql mysql2 )
9893
- if "%BENCH%" == "1" ( node c:\projects\mariadb-connector-nodejs\benchmarks\benchmarks.js )

0 commit comments

Comments
 (0)