try mariadb instead w/ burnettk

This commit is contained in:
jasquat 2022-05-20 12:23:58 -04:00
parent 6944822552
commit fceabe7c58
1 changed files with 14 additions and 7 deletions

View File

@ -80,16 +80,23 @@ jobs:
services: services:
mysql: mysql:
image: mysql:8.0 image: mariadb:10.3
env: env:
MYSQL_DATABASE: spiff_workflow_webapp_testing MYSQL_ROOT_PASSWORD: root
# MYSQL_ALLOW_EMPTY_PASSWORD: yes
# MYSQL_USER: root
MYSQL_PASSWORD: password
# MYSQL_ROOT_PASSWORD:
ports: ports:
- 3306:3306 - 3306:3306
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
# mysql:
# image: mysql:8.0
# env:
# MYSQL_DATABASE: spiff_workflow_webapp_testing
# # MYSQL_ALLOW_EMPTY_PASSWORD: yes
# # MYSQL_USER: root
# MYSQL_PASSWORD: password
# MYSQL_ROOT_PASSWORD: password
# ports:
# - 3306:3306
# options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
steps: steps:
- name: Check out the repository - name: Check out the repository