mirror of
https://github.com/Luzifer/twitch-bot.git
synced 2024-12-20 11:51:17 +00:00
CI: Disable SSL on mysql test container
Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
parent
c63793be2d
commit
0355713f7c
2 changed files with 2 additions and 2 deletions
2
.github/workflows/generated_workflow.yml
vendored
2
.github/workflows/generated_workflow.yml
vendored
|
@ -172,7 +172,7 @@ jobs:
|
|||
run: git config --global --add safe.directory /__w/twitch-bot/twitch-bot
|
||||
- name: Set up MySQL service
|
||||
run: |
|
||||
mariadb -h mysql -u root --password=root-pass <<EOF
|
||||
mariadb --skip-ssl -h mysql -u root --password=root-pass <<EOF
|
||||
CREATE DATABASE integration DEFAULT CHARACTER SET utf8mb4 DEFAULT COLLATE utf8mb4_unicode_ci;
|
||||
GRANT ALL ON integration.* TO 'twitch-bot'@'%';
|
||||
EOF
|
||||
|
|
|
@ -43,7 +43,7 @@ steps:
|
|||
|
||||
- name: Set up MySQL service
|
||||
run: |
|
||||
mariadb -h mysql -u root --password=root-pass <<EOF
|
||||
mariadb --skip-ssl -h mysql -u root --password=root-pass <<EOF
|
||||
CREATE DATABASE integration DEFAULT CHARACTER SET utf8mb4 DEFAULT COLLATE utf8mb4_unicode_ci;
|
||||
GRANT ALL ON integration.* TO 'twitch-bot'@'%';
|
||||
EOF
|
||||
|
|
Loading…
Reference in a new issue