Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: Use a password for MySQL #365

Merged
merged 1 commit into from
Mar 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,24 +54,23 @@ executors:
docker:
- image: cimg/ruby:2.7-node
environment:
DATABASE_URL: "mysql2://[email protected]:3306/ci_test"
DATABASE_URL: "mysql2://root:passw0rd@127.0.0.1:3306/ci_test"
- image: mariadb
environment:
MYSQL_DATABASE: 'ci_test'
MYSQL_USER: 'root'
MYSQL_PASSWORD: ''
MYSQL_ALLOW_EMPTY_PASSWORD: 'yes'
MYSQL_ROOT_PASSWORD: ''
MYSQL_ROOT_PASSWORD: 'passw0rd'
MYSQL_ROOT_HOST: '%'
ruby_27_postgres:
docker:
- image: cimg/ruby:2.7-node
environment:
DATABASE_URL: "postgres://postgres:test@127.0.0.1:5432/ci_test"
DATABASE_URL: "postgres://root:passw0rd@127.0.0.1:5432/ci_test"
- image: postgres
environment:
POSTGRES_PASSWORD: 'test'
POSTGRES_DB: 'ci_test'
POSTGRES_USER: 'root'
POSTGRES_PASSWORD: 'passw0rd'
ruby_30:
docker:
- image: cimg/ruby:3.0-node
Expand Down
Loading