Skip to content

Commit

Permalink
Try to get mysql setup
Browse files Browse the repository at this point in the history
  • Loading branch information
rickychilcott committed Jul 19, 2024
1 parent 6a5401a commit b1b8837
Showing 1 changed file with 15 additions and 14 deletions.
29 changes: 15 additions & 14 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,20 +21,21 @@ jobs:
POSTGRES_USER: thredded
POSTGRES_PASSWORD: thredded

# mysql:
# image: mysql
# ports:
# - 3306:3306
# options: >-
# --health-cmd mysqladmin ping
# --health-interval 10s
# --health-timeout 5s
# --health-retries 3
# env:
# MYSQL_DATABASE: thredded_gem_test
# MYSQL_USER: thredded
# MYSQL_PASSWORD: thredded
# MYSQL_ROOT_PASSWORD: thredded
mysql:
image: mysql:8.0
env:
MYSQL_ROOT_HOST: "%"
MYSQL_DATABASE: thredded_gem_test
MYSQL_USER: thredded
MYSQL_PASSWORD: thredded
MYSQL_ROOT_PASSWORD: thredded
options: >-
--health-cmd "mysqladmin ping"
--health-interval 10s
--health-timeout 5s
--health-retries 3
ports:
- "3306:3306"

strategy:
fail-fast: false
Expand Down

0 comments on commit b1b8837

Please sign in to comment.