Skip to content

Commit

Permalink
fix: ci utf8
Browse files Browse the repository at this point in the history
  • Loading branch information
Lambert-Rao committed Mar 7, 2024
1 parent 8cd05d2 commit 1df4d0a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 1df4d0a

Please sign in to comment.