Skip to content

Commit 3910aed

Browse files
authored
Fix "Plugin 'mysql_native_password' is not loaded" (#6388)
| Q | A |------------- | ----------- | Type | bug | Fixed issues | N/A #### Summary CI is failing with MySQL 8.4 at the moment. Not sure why I did not see that in #6386.
1 parent d0f6167 commit 3910aed

File tree

1 file changed

+20
-2
lines changed

1 file changed

+20
-2
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -383,14 +383,12 @@ jobs:
383383
mysql-version:
384384
- "5.7"
385385
- "8.0"
386-
- "8.4"
387386
extension:
388387
- "mysqli"
389388
- "pdo_mysql"
390389
config-file-suffix:
391390
- ""
392391
include:
393-
- mysql-version: "5.7"
394392
- mysql-version: "8.0"
395393
# https://stackoverflow.com/questions/60902904/how-to-pass-mysql-native-password-to-mysql-service-in-github-actions
396394
custom-entrypoint: >-
@@ -415,6 +413,26 @@ jobs:
415413
- php-version: "8.3"
416414
mysql-version: "8.0"
417415
extension: "pdo_mysql"
416+
- php-version: "7.4"
417+
mysql-version: "8.4"
418+
extension: "mysqli"
419+
custom-entrypoint: >-
420+
--entrypoint sh mysql:8.4 -c "exec docker-entrypoint.sh mysqld --mysql-native-password=ON"
421+
- php-version: "7.4"
422+
mysql-version: "8.4"
423+
extension: "pdo_mysql"
424+
custom-entrypoint: >-
425+
--entrypoint sh mysql:8.4 -c "exec docker-entrypoint.sh mysqld --mysql-native-password=ON"
426+
- php-version: "8.1"
427+
mysql-version: "8.4"
428+
extension: "mysqli"
429+
custom-entrypoint: >-
430+
--entrypoint sh mysql:8.4 -c "exec docker-entrypoint.sh mysqld --mysql-native-password=ON"
431+
- php-version: "8.1"
432+
mysql-version: "8.4"
433+
extension: "pdo_mysql"
434+
custom-entrypoint: >-
435+
--entrypoint sh mysql:8.4 -c "exec docker-entrypoint.sh mysqld --mysql-native-password=ON"
418436
419437
services:
420438
mysql:

0 commit comments

Comments
 (0)