From c03a0dc38ace358f0e9ed445305b4ced3e4344b9 Mon Sep 17 00:00:00 2001 From: Griatch Date: Fri, 19 Dec 2025 12:15:24 +0100 Subject: [PATCH] CI: Testing to add mysql.cnf file --- .github/actions/setup-database/action.yml | 22 ++++--------------- .../workflows/github_action_test_suite.yml | 1 + .github/workflows/mysql.cnf | 5 +++++ .github/workflows/mysql_settings.py | 3 +-- 4 files changed, 11 insertions(+), 20 deletions(-) create mode 100644 .github/workflows/mysql.cnf diff --git a/.github/actions/setup-database/action.yml b/.github/actions/setup-database/action.yml index 62e66b98e6..922d723f64 100644 --- a/.github/actions/setup-database/action.yml +++ b/.github/actions/setup-database/action.yml @@ -43,36 +43,22 @@ runs: echo "MySQL is ready" shell: bash - - name: Set up MySQL Privileges and Character Set + - name: Set up MySQL Privileges if: ${{ inputs.database == 'mysql' }} run: | - # Set global character set and collation - mysql -u root -proot_password -h 127.0.0.1 mysql <