Skip to content

Commit c344c4c

Browse files
committed
Update test_mysql.yml
1 parent 3fd37b5 commit c344c4c

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

.github/workflows/test_mysql.yml

+8-4
Original file line numberDiff line numberDiff line change
@@ -45,13 +45,17 @@ jobs:
4545
php_versions: 8.2
4646
mysql_versions: '8.1'
4747
-
48-
operating_system: 'ubuntu-22.04'
48+
operating_system: 'ubuntu-24.04'
4949
php_versions: 8.2
5050
mysql_versions: 'mariadb-11.4'
5151
-
5252
operating_system: 'ubuntu-22.04'
5353
php_versions: 8.3
5454
mysql_versions: '8.2'
55+
-
56+
operating_system: 'ubuntu-24.04'
57+
php_versions: 8.3
58+
mysql_versions: 'mariadb-11.5'
5559

5660
runs-on: '${{ matrix.operating_system }}'
5761

@@ -64,8 +68,8 @@ jobs:
6468

6569
- name: 'Setup MySQL'
6670
run: |
67-
mysql -e 'SELECT version();' -u${{ env.DB_USER }} -h127.0.0.1 -p${{ env.DB_PASSWORD }}
68-
mysql -e 'CREATE DATABASE ${{ env.DB_DATABASE }};' -u${{ env.DB_USER }} -h127.0.0.1 -p${{ env.DB_PASSWORD }}
71+
mysql -e 'SELECT version();' -u${{ env.DB_USER }} -p${{ env.DB_PASSWORD }} --ssl-mode=DISABLED
72+
mysql -e 'CREATE DATABASE ${{ env.DB_DATABASE }};' -u${{ env.DB_USER }} -p${{ env.DB_PASSWORD }}
6973
7074
- name: 'Setup PHP'
7175
uses: shivammathur/setup-php@v2
@@ -83,4 +87,4 @@ jobs:
8387

8488
- name: Run profiling
8589
if: success() || failure()
86-
run: php bin/codecept run -g profile -d
90+
run: php bin/codecept run -g profile -d

0 commit comments

Comments
 (0)