From c5ea1ebf89e52ef49453682c78f06b9431fa45ae Mon Sep 17 00:00:00 2001 From: Joey Smith Date: Mon, 15 Sep 2025 02:58:10 -0500 Subject: [PATCH 1/4] Updates compose.yml and phpunit.xml.dist to use correct db name Signed-off-by: Joey Smith Signed-off-by: Joey Smith --- compose.yml | 2 +- phpunit.xml.dist | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/compose.yml b/compose.yml index 0bb7326..e509ecc 100644 --- a/compose.yml +++ b/compose.yml @@ -19,7 +19,7 @@ services: ports: - "3306:3306" environment: - - MYSQL_DATABASE=${MYSQL_DATABASE:-laminasdb_test} + - MYSQL_DATABASE=${MYSQL_DATABASE:-phpdb_test} - MYSQL_USER=${MYSQL_USER:-user} - MYSQL_PASSWORD=${MYSQL_PASSWORD:-password} - MYSQL_RANDOM_ROOT_PASSWORD=${MYSQL_RANDOM_ROOT_PASSWORD:-yes} diff --git a/phpunit.xml.dist b/phpunit.xml.dist index 4522d50..4e1fb89 100644 --- a/phpunit.xml.dist +++ b/phpunit.xml.dist @@ -35,7 +35,7 @@ - + \ No newline at end of file From 77e4cf7d9bff3604ee211ccf072ec6e89e6f5e72 Mon Sep 17 00:00:00 2001 From: Joey Smith Date: Mon, 15 Sep 2025 03:14:16 -0500 Subject: [PATCH 2/4] Missed the fixture.sh file Signed-off-by: Joey Smith Signed-off-by: Joey Smith --- .ci/mysql_fixtures.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/mysql_fixtures.sh b/.ci/mysql_fixtures.sh index aa14663..63e894e 100644 --- a/.ci/mysql_fixtures.sh +++ b/.ci/mysql_fixtures.sh @@ -2,4 +2,4 @@ echo "Configure MySQL test database" -mysql --user=root --password=Password123 -e "create database laminasdb_test;" +mysql --user=root --password=Password123 -e "create database phpdb_test;" From 748128ed362853c7cc39caf90bc0419d61d54e9e Mon Sep 17 00:00:00 2001 From: Joey Smith Date: Mon, 15 Sep 2025 03:22:59 -0500 Subject: [PATCH 3/4] Signed-off-by: Joey Smith --- .ci/mysql_fixtures.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/mysql_fixtures.sh b/.ci/mysql_fixtures.sh index 63e894e..c2f42dc 100644 --- a/.ci/mysql_fixtures.sh +++ b/.ci/mysql_fixtures.sh @@ -2,4 +2,4 @@ echo "Configure MySQL test database" -mysql --user=root --password=Password123 -e "create database phpdb_test;" +mysql --user=gha --password=password -e "create database phpdb_test;" From 74bf3a2a77d87aa44c42be6715dc7c72181cae53 Mon Sep 17 00:00:00 2001 From: Joey Smith Date: Mon, 15 Sep 2025 03:35:15 -0500 Subject: [PATCH 4/4] revert changes as a test Signed-off-by: Joey Smith Signed-off-by: Joey Smith --- .ci/mysql_fixtures.sh | 2 +- compose.yml | 2 +- phpunit.xml.dist | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.ci/mysql_fixtures.sh b/.ci/mysql_fixtures.sh index c2f42dc..aa14663 100644 --- a/.ci/mysql_fixtures.sh +++ b/.ci/mysql_fixtures.sh @@ -2,4 +2,4 @@ echo "Configure MySQL test database" -mysql --user=gha --password=password -e "create database phpdb_test;" +mysql --user=root --password=Password123 -e "create database laminasdb_test;" diff --git a/compose.yml b/compose.yml index e509ecc..0bb7326 100644 --- a/compose.yml +++ b/compose.yml @@ -19,7 +19,7 @@ services: ports: - "3306:3306" environment: - - MYSQL_DATABASE=${MYSQL_DATABASE:-phpdb_test} + - MYSQL_DATABASE=${MYSQL_DATABASE:-laminasdb_test} - MYSQL_USER=${MYSQL_USER:-user} - MYSQL_PASSWORD=${MYSQL_PASSWORD:-password} - MYSQL_RANDOM_ROOT_PASSWORD=${MYSQL_RANDOM_ROOT_PASSWORD:-yes} diff --git a/phpunit.xml.dist b/phpunit.xml.dist index 4e1fb89..4522d50 100644 --- a/phpunit.xml.dist +++ b/phpunit.xml.dist @@ -35,7 +35,7 @@ - + \ No newline at end of file