Merge branch 'PHP-8.3' into PHP-8.4

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

View file

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