Testing sending all through options
This commit is contained in:
parent
ea2b259c79
commit
fa99218c31
1 changed files with 13 additions and 10 deletions
23
.github/workflows/github_action_test_suite.yml
vendored
23
.github/workflows/github_action_test_suite.yml
vendored
|
|
@ -40,10 +40,10 @@ jobs:
|
||||||
POSTGRES_DB: evennia
|
POSTGRES_DB: evennia
|
||||||
POSTGRES_PASSWORD: evennia
|
POSTGRES_PASSWORD: evennia
|
||||||
options: >-
|
options: >-
|
||||||
--health-cmd pg_isready
|
--health-cmd=pg_isready
|
||||||
--health-interval 10s
|
--health-interval=10s
|
||||||
--health-timeout 5s
|
--health-timeout=5s
|
||||||
--health-retries 5
|
--health-retries=5
|
||||||
ports:
|
ports:
|
||||||
- 5432:5432
|
- 5432:5432
|
||||||
|
|
||||||
|
|
@ -55,12 +55,15 @@ jobs:
|
||||||
MYSQL_USER: evennia
|
MYSQL_USER: evennia
|
||||||
MYSQL_PASSWORD: evennia
|
MYSQL_PASSWORD: evennia
|
||||||
options: >-
|
options: >-
|
||||||
--health-cmd "mysqladmin ping"
|
--health-cmd="mysqladmin ping"
|
||||||
--health-interval 10s
|
--health-interval=10s
|
||||||
--health-timeout 5s
|
--health-timeout=5s
|
||||||
--health-retries 5
|
--health-retries=5
|
||||||
--character-set-server "utf8mb4"
|
--character-set-server=utf8mb4
|
||||||
--collation-server "utf8mb4_unicode_ci"
|
--collation-server=utf8mb4_unicode_ci
|
||||||
|
--innodb-large-prefix=1
|
||||||
|
--innodb-file-format=Barracuda
|
||||||
|
--innodb-file-per-table=1
|
||||||
ports:
|
ports:
|
||||||
- 3306:3306
|
- 3306:3306
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue