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 ffaa7e2 commit 4edb53a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/REUSABLE_backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ jobs:
MYSQL_PASSWORD: ${{ env.DB_PASSWORD }}
MYSQL_ROOT_PASSWORD: root
ports:
- 13306:3306
- 3306
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=10
postgres:
image: ${{ matrix.driver == 'pgsql' && matrix.service || '' }}
Expand Down Expand Up @@ -203,11 +203,11 @@ jobs:
if: ${{ matrix.driver == 'mysql' || matrix.driver == 'mariadb' }}
run: |
sudo systemctl start mysql
mysql -uroot -proot -e 'CREATE DATABASE flarum_test;' --port 13306
mysql -uroot -proot -e 'CREATE DATABASE flarum_test;' --port 3306
- name: mysql version 2
if: ${{ matrix.driver == 'mysql' || matrix.driver == 'mariadb' }}
run: mysql --host 127.0.0.1 --port 13306 -uroot -ppassword -e "SELECT @@VERSION"
run: mysql --host 127.0.0.1 --port 3306 -uroot -ppassword -e "SELECT @@VERSION"

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

0 comments on commit 4edb53a

Please sign in to comment.