From 01f457bf226ed5392d584a21a292724ec843da03 Mon Sep 17 00:00:00 2001 From: Alvaro Flores Date: Wed, 18 May 2022 23:34:05 +0000 Subject: [PATCH] docker with php74 and mysql 8 was added --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 0b6f11c11..4c28686e0 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -21,8 +21,8 @@ jobs: - run: name: Wait for DB command: dockerize -wait tcp://127.0.0.1:3306 -timeout 3m - - run: mysql -u root -ppassword -e "create database test;" - - run: mysql -u root -ppassword -e "create database testexternal;" + - run: mysql -u root -ppassword -h 127.0.0.1 -e "create database test;" + - run: mysql -u root -ppassword -h 127.0.0.1 -e "create database testexternal;" - run: composer install - run: name: Run Test Units