From da2748710612bb9f841cc74df37c77950197fcbf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Menrath?= Date: Mon, 4 Dec 2023 22:12:42 +0100 Subject: [PATCH] ci: install missing mariadb-server --- bin/install-wp-tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/install-wp-tests.sh b/bin/install-wp-tests.sh index 2bbb480..b9e7cf7 100755 --- a/bin/install-wp-tests.sh +++ b/bin/install-wp-tests.sh @@ -144,7 +144,7 @@ create_db() { install_db() { # the mariadb commands are not available on some self-hosted runner images - apt update && apt-get install mariadb-client -y + apt update && apt-get install mariadb-server mariadb-client -y if [ ${SKIP_DB_CREATE} = "true" ]; then return 0