Merge branch 'PHP-8.4'

* PHP-8.4:
  Use preinstalled MySQL for Windows CI
This commit is contained in:
Christoph M. Becker 2025-01-25 17:43:17 +01:00
commit fa1af48c83
No known key found for this signature in database
GPG key ID: D66C9593118BCCB6

View file

@ -3,10 +3,12 @@ runs:
using: composite
steps:
- name: Setup MySQL
shell: pwsh
shell: cmd
run: |
choco install mysql -y --no-progress --params="/port:3306"
mysql.exe --port=3306 --user=root --password="" -e "ALTER USER 'root'@'localhost' IDENTIFIED BY 'Password12!'; FLUSH PRIVILEGES;"
mysqld --initialize-insecure
mysqld --install
net start MySQL
mysql --port=3306 --user=root --password="" -e "ALTER USER 'root'@'localhost' IDENTIFIED BY 'Password12!'; FLUSH PRIVILEGES;"
- name: Setup MSSQL
shell: pwsh
run: |