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 47f3bc1 commit 22c1c46
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/REUSABLE_backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -198,18 +198,14 @@ jobs:
- name: mysql version 1
if: ${{ matrix.driver == 'mysql' || matrix.driver == 'mariadb' }}
run: |
mysql --port 13306 -uroot -ppassword -e "SELECT @@VERSION"
mysql -h localhost --port 13306 -uroot -proot -e "SELECT @@VERSION"
- name: Create ${{ matrix.db }} Database
if: ${{ matrix.driver == 'mysql' || matrix.driver == 'mariadb' }}
run: |
sudo systemctl start mysql
mysql -uroot -proot -e 'CREATE DATABASE flarum_test;' --port 13306
- name: mysql version 2
if: ${{ matrix.driver == 'mysql' || matrix.driver == 'mariadb' }}
run: mysql --port 13306 -uroot -ppassword -e "SELECT @@VERSION"

- name: Install Composer dependencies
run: composer install
working-directory: ${{ inputs.backend_directory }}
Expand Down

0 comments on commit 22c1c46

Please sign in to comment.