code cleanup

This commit is contained in:
Jan Prochazka 2021-05-27 15:09:59 +02:00
parent d67637c7e8
commit 9af28e7d20
2 changed files with 2 additions and 12 deletions

View File

@ -30,8 +30,6 @@ jobs:
image: postgres image: postgres
env: env:
POSTGRES_PASSWORD: Pwd2020Db POSTGRES_PASSWORD: Pwd2020Db
# ports:
# - 5432:5432
options: >- options: >-
--health-cmd pg_isready --health-cmd pg_isready
--health-interval 10s --health-interval 10s
@ -40,17 +38,11 @@ jobs:
mysql: mysql:
image: mysql image: mysql
# options: >-
# --default-authentication-plugin=mysql_native_password
# ports:
# - 15001:3306
env: env:
MYSQL_ROOT_PASSWORD: Pwd2020Db MYSQL_ROOT_PASSWORD: Pwd2020Db
mssql: mssql:
image: mcr.microsoft.com/mssql/server image: mcr.microsoft.com/mssql/server
# ports:
# - 15002:1433
env: env:
ACCEPT_EULA: Y ACCEPT_EULA: Y
SA_PASSWORD: Pwd2020Db SA_PASSWORD: Pwd2020Db
@ -58,7 +50,3 @@ jobs:
cockroachdb: cockroachdb:
image: cockroachdb/cockroach image: cockroachdb/cockroach
# ports:
# - 15003:26257
# options: >-
# start-single-node --insecure

View File

@ -20,6 +20,7 @@ const engines = [
server: 'localhost', server: 'localhost',
port: 15001, port: 15001,
}, },
skipOnGithub: true,
objects: [views], objects: [views],
}, },
{ {
@ -90,6 +91,7 @@ const engines = [
server: 'localhost', server: 'localhost',
port: 15003, port: 15003,
}, },
skipOnGithub: true,
objects: [views], objects: [views],
}, },
]; ];