Skip to content

Commit e15c538

Browse files
Fix CI tests with MariaDB. (#1797)
* Fix CI tests with MariaDB. The docker image now uses MARIADB_ROOT_PASSWORD for the environment variable for the password rather than MYSQL_ROOT_PASSWORD. * It's mariadb-admin now not mysqladmin As per MariaDB/mariadb-docker#497
1 parent e535c9d commit e15c538

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ jobs:
2020
mariadb:
2121
image: mariadb
2222
env:
23-
MYSQL_ROOT_PASSWORD: debug_toolbar
23+
MARIADB_ROOT_PASSWORD: debug_toolbar
2424
options: >-
25-
--health-cmd "mysqladmin ping"
25+
--health-cmd "mariadb-admin ping"
2626
--health-interval 10s
2727
--health-timeout 5s
2828
--health-retries 5

0 commit comments

Comments
 (0)