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
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:
parent
f4b36cf122
commit
4e61189d03
|
@ -26,15 +26,26 @@ jobs:
|
||||||
- 5432:5432
|
- 5432:5432
|
||||||
env:
|
env:
|
||||||
POSTGRES_PASSWORD: postgres
|
POSTGRES_PASSWORD: postgres
|
||||||
|
mysql8:
|
||||||
|
image: mysql:8.0
|
||||||
|
env:
|
||||||
|
MYSQL_ALLOW_EMPTY_PASSWORD: yes
|
||||||
|
MYSQL_DATABASE: test_db
|
||||||
|
ports:
|
||||||
|
- 3306:3306
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Setup Service
|
- name: Setup Service
|
||||||
if: matrix.db-type == 'mysql'
|
if: matrix.db-type == 'mysql'
|
||||||
run: |
|
run: |
|
||||||
sudo service mysql start
|
apt-get update && apt-get install -y lsb-release inetutils-tools
|
||||||
mysql -h 127.0.0.1 -u root -proot -e 'CREATE DATABASE cakephp;'
|
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
|
- name: Setup PHP
|
||||||
uses: shivammathur/setup-php@v2
|
uses: shivammathur/setup-php@v2
|
||||||
|
|
Loading…
Reference in New Issue