From 4c83264c4a4d0869daa649a16428f261a733e6af Mon Sep 17 00:00:00 2001 From: Jannat Patel Date: Fri, 13 Oct 2023 13:14:35 +0530 Subject: [PATCH] ci: added collation server for mariadb --- .github/workflows/ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5a485f16..6dd16f80 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,10 +20,11 @@ jobs: image: redis:alpine ports: - 12000:6379 - mysql: + mariadb: image: mariadb:10.6 env: - MARIADB_ROOT_PASSWORD: "root" + MYSQL_ROOT_PASSWORD: "root" + COLLATION_SERVER: "utf8mb4_unicode_ci" ports: - 3306:3306 options: --health-cmd="mariadb-admin ping" --health-interval=5s --health-timeout=2s --health-retries=3