File tree Expand file tree Collapse file tree 1 file changed +3
-12
lines changed
Expand file tree Collapse file tree 1 file changed +3
-12
lines changed Original file line number Diff line number Diff line change @@ -103,19 +103,10 @@ jobs:
103103
104104 services :
105105 mysql :
106- image : bitnami/mysql:${{ matrix.mysql }}
107- env :
108- MYSQL_DATABASE : wp_cli_test
109- MYSQL_USER : root
110- MYSQL_ROOT_PASSWORD : root
111- MYSQL_AUTHENTICATION_PLUGIN : mysql_native_password
106+ image : mysql:${{ matrix.mysql }}
112107 ports :
113- - 3306/tcp
114- options : >-
115- --health-cmd="mysqladmin ping"
116- --health-interval=10s
117- --health-timeout=5s
118- --health-retries=3
108+ - 3306
109+ options : --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 -e MYSQL_ROOT_PASSWORD=root -e MYSQL_DATABASE=wp_cli_test --entrypoint sh mysql:${{ matrix.mysql }} -c "exec docker-entrypoint.sh mysqld --default-authentication-plugin=mysql_native_password"
119110
120111 steps :
121112 - name : Check out source code
You can’t perform that action at this time.
0 commit comments