From ec257d21179dc2fbb47dd6e6502ceed4144a39c7 Mon Sep 17 00:00:00 2001 From: Griatch Date: Fri, 19 Dec 2025 12:37:10 +0100 Subject: [PATCH] CI: More MySQL testing --- .github/workflows/github_action_test_suite.yml | 5 ++++- .github/workflows/mysql.cnf | 5 ----- 2 files changed, 4 insertions(+), 6 deletions(-) delete mode 100644 .github/workflows/mysql.cnf diff --git a/.github/workflows/github_action_test_suite.yml b/.github/workflows/github_action_test_suite.yml index cbaef666a3..0c9e18989c 100644 --- a/.github/workflows/github_action_test_suite.yml +++ b/.github/workflows/github_action_test_suite.yml @@ -71,7 +71,10 @@ jobs: --health-interval=10s --health-timeout=5s --health-retries=3 - --mount type=bind,source=${{ github.workspace }}/.github/workflows/mysql.cnf,target=/etc/mysql/conf.d/custom.cnf,readonly + --entrypoint="" + sh + -c + "printf '[mysqld]\ncharacter-set-server=utf8mb4\ncollation-server=utf8mb4_unicode_ci\ninnodb-default-row-format=DYNAMIC\n' > /etc/mysql/conf.d/custom.cnf && exec docker-entrypoint.sh mysqld" steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/mysql.cnf b/.github/workflows/mysql.cnf deleted file mode 100644 index 80e9c867c0..0000000000 --- a/.github/workflows/mysql.cnf +++ /dev/null @@ -1,5 +0,0 @@ -[mysqld] -character-set-server=utf8mb4 -collation-server=utf8mb4_unicode_ci -innodb-default-row-format=DYNAMIC -