From 45b3983b0a000def8cb70b8cc50972a4cbac2e44 Mon Sep 17 00:00:00 2001 From: Nicos Panayides Date: Wed, 11 Dec 2024 09:51:15 +0200 Subject: [PATCH] Split the creation of extra mariadb databases in another step --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e3979d93..444e8442 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -57,6 +57,8 @@ jobs: mariadb version: '10.11.10' mysql database: 'cakephp_test' mysql root password: 'root' + - name: Setup MariaDB (part 2) + if: matrix.db-type == 'mariadb' run: | mariadb -h 127.0.0.1 -u root -proot -e 'CREATE DATABASE cakephp_comparisons;' mariadb -h 127.0.0.1 -u root -proot -e 'CREATE DATABASE cakephp_snapshot;'