From 0a6f190f0eb7b959088d07451ead94dd069d7a25 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dani=C3=ABl=20van=20Eeden?= Date: Mon, 10 Mar 2025 08:52:23 +0100 Subject: [PATCH] CI: Test with MySQL 5.7 --- .github/workflows/ci.yml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index aa7a69e9a..1e440ad77 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -56,8 +56,9 @@ jobs: strategy: matrix: mysql_version: - - 8.0.40 - - 8.4.3 + - '5.7' + - '8.0' + - '8.4' name: Tests with MySQL ${{ matrix.mysql_version }} runs-on: ubuntu-latest services: @@ -67,7 +68,12 @@ jobs: MYSQL_ALLOW_EMPTY_PASSWORD: yes ports: - 3306:3306 - options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 + options: >- + --entrypoint="docker-entrypoint.sh --log-bin --server-id=100" + --health-cmd="mysqladmin ping" + --health-interval=10s + --health-timeout=5s + --health-retries=3 steps: - name: MySQL versions