From 1df4d0ab15512396c8d662d014474d0380a272ee Mon Sep 17 00:00:00 2001 From: "lambert@arch" Date: Thu, 7 Mar 2024 12:27:11 +0800 Subject: [PATCH] fix: ci utf8 --- .github/workflows/ci.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index df1716f4..fcd551a4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -39,7 +39,6 @@ jobs: services: mysql: image: mysql:8.0 - command: --character-set-server=utf8mb4 --collation-server=utf8mb4_bin env: # The MySQL docker container requires these environment variables to be set, so we can create and migrate the test database. MYSQL_DATABASE: eventmesh_dashboard_test @@ -48,7 +47,7 @@ jobs: # https://docs.github.com/en/actions/using-containerized-services/about-service-containers - 3306:3306 # Set health checks to wait until MySQL has started - options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 + options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 --character-set-server=utf8mb4 --collation-server=utf8mb4_unicode_ci steps: - name: Checkout repository