mysql service
CI / testsuite (mysql, 8.1, ) (push) Failing after 33s Details
CI / testsuite (mysql, 8.4, ) (push) Failing after 7s Details
CI / testsuite (pgsql, 8.1, ) (push) Failing after 6s Details
CI / testsuite (pgsql, 8.4, ) (push) Failing after 4s Details
CI / testsuite (sqlite, 8.1, ) (push) Failing after 4s Details
CI / testsuite (sqlite, 8.1, prefer-lowest) (push) Failing after 4s Details
CI / testsuite (sqlite, 8.4, ) (push) Failing after 4s Details
CI / Coding Standard & Static Analysis (push) Failing after 5m48s Details

This commit is contained in:
Brandon Shipley 2025-03-27 21:21:50 -07:00
parent f4b36cf122
commit 4e61189d03
Signed by: bmfs
GPG Key ID: 14E38571D8BB0DE4
1 changed files with 14 additions and 3 deletions

View File

@ -26,15 +26,26 @@ jobs:
- 5432:5432
env:
POSTGRES_PASSWORD: postgres
mysql8:
image: mysql:8.0
env:
MYSQL_ALLOW_EMPTY_PASSWORD: yes
MYSQL_DATABASE: test_db
ports:
- 3306:3306
steps:
- uses: actions/checkout@v4
- name: Setup Service
if: matrix.db-type == 'mysql'
run: |
sudo service mysql start
mysql -h 127.0.0.1 -u root -proot -e 'CREATE DATABASE cakephp;'
apt-get update && apt-get install -y lsb-release inetutils-tools
wget https://dev.mysql.com/get/mysql-apt-config_0.8.24-1_all.deb
DEBIAN_FRONTEND=noninteractive dpkg -i mysql-apt-config_0.8.24-1_all.deb
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys B7B3B788A8D3785C
apt-get update
apt install -y default-mysql-client
mysql -h mysql8 -u root -e 'CREATE DATABASE cakephp;'
- name: Setup PHP
uses: shivammathur/setup-php@v2