Skip to content

Commit

Permalink
add SSL to test matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
sidorares committed Sep 29, 2019
1 parent ab571f7 commit e17116d
Show file tree
Hide file tree
Showing 6 changed files with 278 additions and 627 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ lib-cov
*.gz
.DS_Store
.idea/
mysqldata/

tmp
pids
Expand Down
4 changes: 4 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"printWidth": 80,
"singleQuote": true
}
10 changes: 8 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,15 @@ matrix:
- node_js: '11'
env: LINT=0 DOCKER_MYSQL_VERSION=5.7
- node_js: '12'
env: LINT=0 DOCKER_MYSQL_VERSION=5.7
env: MYSQL_USE_COMPRESSION=1 LINT=0 DOCKER_MYSQL_VERSION=5.7
- node_js: '12'
env: LINT=0 DOCKER_MYSQL_VERSION=8
- node_js: '12'
env: MYSQL_USE_COMPRESSION=1 LINT=0 DOCKER_MYSQL_VERSION=8
- node_js: '12'
env: MYSQL_USE_TLS=1 LINT=0 DOCKER_MYSQL_VERSION=8
- node_js: '12'
env: MYSQL_USE_TLS=1 MYSQL_USE_COMPRESSION=1 LINT=0 DOCKER_MYSQL_VERSION=8

cache:
yarn: true
Expand All @@ -32,4 +38,4 @@ script:
- MYSQL_PORT=33306 node tools/wait-up.js
- yarn --version
- if [ "$LINT" = "1" ]; then yarn run lint; fi
- MYSQL_PORT=33306 yarn run test:raw
- MYSQL_PORT=33306 yarn run test:raw
Loading

0 comments on commit e17116d

Please sign in to comment.