Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
SychO9 committed Nov 30, 2024
1 parent 25003f3 commit 710aa0d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/REUSABLE_backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,8 @@ jobs:
ini-values: ${{ matrix.php_ini_values }}

- name: mysql version 1
run: mysql --host 127.0.0.1 --port ${{ job.services.mysql.ports['13306'] }} -uroot -ppassword -e "SELECT @@VERSION"
if: ${{ matrix.driver == 'mysql' || matrix.driver == 'mariadb' }}
run: mysql --host 127.0.0.1 --port 13306 -uroot -ppassword -e "SELECT @@VERSION"

- name: Create ${{ matrix.db }} Database
if: ${{ matrix.driver == 'mysql' || matrix.driver == 'mariadb' }}
Expand All @@ -204,7 +205,8 @@ jobs:
mysql -uroot -proot -e 'CREATE DATABASE flarum_test;' --port 13306
- name: mysql version 2
run: mysql --host 127.0.0.1 --port ${{ job.services.mysql.ports['13306'] }} -uroot -ppassword -e "SELECT @@VERSION"
if: ${{ matrix.driver == 'mysql' || matrix.driver == 'mariadb' }}
run: mysql --host 127.0.0.1 --port 13306 -uroot -ppassword -e "SELECT @@VERSION"

- name: Install Composer dependencies
run: composer install
Expand Down

0 comments on commit 710aa0d

Please sign in to comment.