mirror of
https://github.com/evennia/evennia.git
synced 2026-03-16 21:06:30 +01:00
Revert CI experiments
This commit is contained in:
parent
90cd9e8308
commit
609b646e45
4 changed files with 24 additions and 29 deletions
6
.github/actions/setup-database/action.yml
vendored
6
.github/actions/setup-database/action.yml
vendored
|
|
@ -26,7 +26,7 @@ runs:
|
|||
postgresql version: "12"
|
||||
postgresql db: "evennia"
|
||||
postgresql user: "evennia"
|
||||
postgresql password: "evennia"
|
||||
postgresql password: "password"
|
||||
|
||||
- name: Wait for PostgreSQL to activate
|
||||
if: ${{ inputs.database == 'postgresql' }}
|
||||
|
|
@ -50,7 +50,7 @@ runs:
|
|||
collation server: "utf8_general_ci"
|
||||
mysql database: "evennia"
|
||||
mysql user: "evennia"
|
||||
mysql password: "evennia"
|
||||
mysql password: "password"
|
||||
mysql root password: root_password
|
||||
|
||||
- name: Wait for MySQL to activate
|
||||
|
|
@ -68,7 +68,7 @@ runs:
|
|||
if: ${{ inputs.database == 'mysql' }}
|
||||
run: |
|
||||
cat <<EOF | mysql -u root -proot_password -h 127.0.0.1 mysql
|
||||
create user 'evennia'@'%' identified by 'evennia';
|
||||
create user 'evennia'@'%' identified by 'password';
|
||||
grant all on \`evennia%\`.* to 'evennia'@'%';
|
||||
grant process on *.* to 'evennia'@'%';
|
||||
flush privileges
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue