From fa99218c31aedb1b381fc8b1a9dab60aa811872a Mon Sep 17 00:00:00 2001 From: Griatch Date: Thu, 27 Jun 2024 20:22:25 +0200 Subject: [PATCH] Testing sending all through options --- .../workflows/github_action_test_suite.yml | 23 +++++++++++-------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/.github/workflows/github_action_test_suite.yml b/.github/workflows/github_action_test_suite.yml index ded08d764c..750973d0db 100644 --- a/.github/workflows/github_action_test_suite.yml +++ b/.github/workflows/github_action_test_suite.yml @@ -40,10 +40,10 @@ jobs: POSTGRES_DB: evennia POSTGRES_PASSWORD: evennia options: >- - --health-cmd pg_isready - --health-interval 10s - --health-timeout 5s - --health-retries 5 + --health-cmd=pg_isready + --health-interval=10s + --health-timeout=5s + --health-retries=5 ports: - 5432:5432 @@ -55,12 +55,15 @@ jobs: MYSQL_USER: evennia MYSQL_PASSWORD: evennia options: >- - --health-cmd "mysqladmin ping" - --health-interval 10s - --health-timeout 5s - --health-retries 5 - --character-set-server "utf8mb4" - --collation-server "utf8mb4_unicode_ci" + --health-cmd="mysqladmin ping" + --health-interval=10s + --health-timeout=5s + --health-retries=5 + --character-set-server=utf8mb4 + --collation-server=utf8mb4_unicode_ci + --innodb-large-prefix=1 + --innodb-file-format=Barracuda + --innodb-file-per-table=1 ports: - 3306:3306