Updates MySQL CI Connection

This *should* bring our tests back.
This commit is contained in:
Refringe 2025-01-28 22:21:20 -05:00
parent 88faeb3128
commit bcd813cc18
Signed by: Refringe
SSH Key Fingerprint: SHA256:t865XsQpfTeqPRBMN2G6+N8wlDjkgUCZF3WGW6O9N/k
2 changed files with 5 additions and 3 deletions

View File

@ -9,8 +9,8 @@ LOG_DEPRECATIONS_CHANNEL=null
LOG_LEVEL=debug LOG_LEVEL=debug
DB_CONNECTION=mysql DB_CONNECTION=mysql
DB_HOST=mysql DB_HOST=127.0.0.1
DB_PORT=3306 DB_PORT=33306
DB_DATABASE=testing DB_DATABASE=testing
DB_USERNAME=user DB_USERNAME=user
DB_PASSWORD=password DB_PASSWORD=password

View File

@ -13,7 +13,9 @@ jobs:
MYSQL_USER: user MYSQL_USER: user
MYSQL_PASSWORD: password MYSQL_PASSWORD: password
MYSQL_ROOT_PASSWORD: password MYSQL_ROOT_PASSWORD: password
options: --health-cmd="mysql -u user -D testing -ppassword -h mysql -e ''" --health-interval=10s --health-timeout=5s --health-retries=3 ports:
- 33306:3306
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
steps: steps:
- name: Checkout - name: Checkout