ci: add mariadb to integration tests (#1013)

This commit is contained in:
Ariel Mashraki
2020-12-03 09:42:39 +02:00
committed by GitHub
parent e02fe188c2
commit 93cc73c6fa
2 changed files with 31 additions and 0 deletions

View File

@@ -115,6 +115,19 @@ jobs:
--health-start-period 10s
--health-timeout 5s
--health-retries 10
maria:
image: mariadb
env:
MYSQL_DATABASE: test
MYSQL_ROOT_PASSWORD: pass
ports:
- 4306:3306
options: >-
--health-cmd "mysqladmin ping -ppass"
--health-interval 10s
--health-start-period 10s
--health-timeout 5s
--health-retries 10
postgres10:
image: postgres:10
env:
@@ -228,6 +241,19 @@ jobs:
--health-start-period 10s
--health-timeout 5s
--health-retries 10
maria:
image: mariadb
env:
MYSQL_DATABASE: test
MYSQL_ROOT_PASSWORD: pass
ports:
- 4306:3306
options: >-
--health-cmd "mysqladmin ping -ppass"
--health-interval 10s
--health-start-period 10s
--health-timeout 5s
--health-retries 10
postgres10:
image: postgres:10
env: