-
Notifications
You must be signed in to change notification settings - Fork 125
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7cba382
commit 0ff4f8e
Showing
5 changed files
with
75 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,37 +42,37 @@ jobs: | |
DATABASE_URL: "${{ matrix.database_url }}" | ||
DATA_TYPE: "${{ matrix.data_type }}" | ||
services: | ||
postgres_11: | ||
image: postgres:11 | ||
postgres_13: | ||
image: postgres:13 | ||
env: | ||
POSTGRES_DB: rails_event_store | ||
POSTGRES_PASSWORD: secret | ||
ports: | ||
- 10011:5432 | ||
- 10013:5432 | ||
options: --health-cmd "pg_isready" --health-interval 10s --health-timeout 5s --health-retries 5 | ||
postgres_15: | ||
image: postgres:15 | ||
postgres_17: | ||
image: postgres:17 | ||
env: | ||
POSTGRES_DB: rails_event_store | ||
POSTGRES_PASSWORD: secret | ||
ports: | ||
- 10015:5432 | ||
- 10017:5432 | ||
options: --health-cmd "pg_isready" --health-interval 10s --health-timeout 5s --health-retries 5 | ||
mysql_5: | ||
image: mysql:5 | ||
mysql_8: | ||
image: mysql:8.0 | ||
env: | ||
MYSQL_DATABASE: rails_event_store | ||
MYSQL_ROOT_PASSWORD: secret | ||
ports: | ||
- 10005:3306 | ||
- 10080:3306 | ||
options: --health-cmd "mysqladmin ping" --health-interval 10s --health-timeout 5s --health-retries 5 | ||
mysql_8: | ||
image: mysql:8 | ||
mysql_8_4: | ||
image: mysql:8.4 | ||
env: | ||
MYSQL_DATABASE: rails_event_store | ||
MYSQL_ROOT_PASSWORD: secret | ||
ports: | ||
- 10008:3306 | ||
- 10084:3306 | ||
options: --health-cmd "mysqladmin ping" --health-interval 10s --health-timeout 5s --health-retries 5 | ||
strategy: | ||
fail-fast: false | ||
|
@@ -100,31 +100,31 @@ jobs: | |
data_type: binary | ||
- ruby_version: ruby-3.3 | ||
bundle_gemfile: Gemfile | ||
database_url: postgres://postgres:secret@localhost:10015/rails_event_store | ||
database_url: postgres://postgres:secret@localhost:10017/rails_event_store | ||
data_type: binary | ||
- ruby_version: ruby-3.3 | ||
bundle_gemfile: Gemfile | ||
database_url: postgres://postgres:secret@localhost:10011/rails_event_store | ||
database_url: postgres://postgres:secret@localhost:10013/rails_event_store | ||
data_type: binary | ||
- ruby_version: ruby-3.3 | ||
bundle_gemfile: Gemfile | ||
database_url: postgres://postgres:secret@localhost:10015/rails_event_store | ||
database_url: postgres://postgres:secret@localhost:10017/rails_event_store | ||
data_type: json | ||
- ruby_version: ruby-3.3 | ||
bundle_gemfile: Gemfile | ||
database_url: postgres://postgres:secret@localhost:10015/rails_event_store | ||
database_url: postgres://postgres:secret@localhost:10017/rails_event_store | ||
data_type: jsonb | ||
- ruby_version: ruby-3.3 | ||
bundle_gemfile: Gemfile | ||
database_url: mysql2://root:[email protected]:10008/rails_event_store | ||
database_url: mysql2://root:[email protected]:10084/rails_event_store | ||
data_type: binary | ||
- ruby_version: ruby-3.3 | ||
bundle_gemfile: Gemfile | ||
database_url: mysql2://root:[email protected]:10005/rails_event_store | ||
database_url: mysql2://root:[email protected]:10080/rails_event_store | ||
data_type: binary | ||
- ruby_version: ruby-3.3 | ||
bundle_gemfile: Gemfile | ||
database_url: mysql2://root:[email protected]:10008/rails_event_store | ||
database_url: mysql2://root:[email protected]:10084/rails_event_store | ||
data_type: json | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,21 +31,21 @@ jobs: | |
BUNDLE_GEMFILE: "${{ matrix.bundle_gemfile }}" | ||
DATABASE_URL: "${{ matrix.database_url }}" | ||
services: | ||
mysql_5: | ||
image: mysql:5 | ||
mysql_8: | ||
image: mysql:8.0 | ||
env: | ||
MYSQL_DATABASE: rails_event_store | ||
MYSQL_ROOT_PASSWORD: secret | ||
ports: | ||
- 10005:3306 | ||
- 10080:3306 | ||
options: --health-cmd "mysqladmin ping" --health-interval 10s --health-timeout 5s --health-retries 5 | ||
mysql_8: | ||
image: mysql:8 | ||
mysql_8_4: | ||
image: mysql:8.4 | ||
env: | ||
MYSQL_DATABASE: rails_event_store | ||
MYSQL_ROOT_PASSWORD: secret | ||
ports: | ||
- 10008:3306 | ||
- 10084:3306 | ||
options: --health-cmd "mysqladmin ping" --health-interval 10s --health-timeout 5s --health-retries 5 | ||
strategy: | ||
fail-fast: false | ||
|
@@ -71,10 +71,10 @@ jobs: | |
database_url: sqlite3:db.sqlite3 | ||
- ruby_version: ruby-3.3 | ||
bundle_gemfile: Gemfile | ||
database_url: mysql2://root:[email protected]:10005/rails_event_store | ||
database_url: mysql2://root:[email protected]:10080/rails_event_store | ||
- ruby_version: ruby-3.3 | ||
bundle_gemfile: Gemfile | ||
database_url: mysql2://root:[email protected]:10008/rails_event_store | ||
database_url: mysql2://root:[email protected]:10084/rails_event_store | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,37 +32,37 @@ jobs: | |
DATABASE_URL: "${{ matrix.database_url }}" | ||
DATA_TYPE: "${{ matrix.data_type }}" | ||
services: | ||
postgres_11: | ||
image: postgres:11 | ||
postgres_13: | ||
image: postgres:13 | ||
env: | ||
POSTGRES_DB: rails_event_store | ||
POSTGRES_PASSWORD: secret | ||
ports: | ||
- 10011:5432 | ||
- 10013:5432 | ||
options: --health-cmd "pg_isready" --health-interval 10s --health-timeout 5s --health-retries 5 | ||
postgres_15: | ||
image: postgres:15 | ||
postgres_17: | ||
image: postgres:17 | ||
env: | ||
POSTGRES_DB: rails_event_store | ||
POSTGRES_PASSWORD: secret | ||
ports: | ||
- 10015:5432 | ||
- 10017:5432 | ||
options: --health-cmd "pg_isready" --health-interval 10s --health-timeout 5s --health-retries 5 | ||
mysql_5: | ||
image: mysql:5 | ||
mysql_8: | ||
image: mysql:8.0 | ||
env: | ||
MYSQL_DATABASE: rails_event_store | ||
MYSQL_ROOT_PASSWORD: secret | ||
ports: | ||
- 10005:3306 | ||
- 10080:3306 | ||
options: --health-cmd "mysqladmin ping" --health-interval 10s --health-timeout 5s --health-retries 5 | ||
mysql_8: | ||
image: mysql:8 | ||
mysql_8_4: | ||
image: mysql:8.4 | ||
env: | ||
MYSQL_DATABASE: rails_event_store | ||
MYSQL_ROOT_PASSWORD: secret | ||
ports: | ||
- 10008:3306 | ||
- 10084:3306 | ||
options: --health-cmd "mysqladmin ping" --health-interval 10s --health-timeout 5s --health-retries 5 | ||
strategy: | ||
fail-fast: false | ||
|
@@ -82,27 +82,27 @@ jobs: | |
data_type: text | ||
- ruby_version: ruby-3.3 | ||
bundle_gemfile: Gemfile | ||
database_url: postgres://postgres:secret@localhost:10015/rails_event_store | ||
database_url: postgres://postgres:secret@localhost:10017/rails_event_store | ||
data_type: text | ||
- ruby_version: ruby-3.3 | ||
bundle_gemfile: Gemfile | ||
database_url: postgres://postgres:secret@localhost:10011/rails_event_store | ||
database_url: postgres://postgres:secret@localhost:10013/rails_event_store | ||
data_type: text | ||
- ruby_version: ruby-3.3 | ||
bundle_gemfile: Gemfile | ||
database_url: postgres://postgres:secret@localhost:10015/rails_event_store | ||
database_url: postgres://postgres:secret@localhost:10017/rails_event_store | ||
data_type: json | ||
- ruby_version: ruby-3.3 | ||
bundle_gemfile: Gemfile | ||
database_url: postgres://postgres:secret@localhost:10015/rails_event_store | ||
database_url: postgres://postgres:secret@localhost:10017/rails_event_store | ||
data_type: jsonb | ||
- ruby_version: ruby-3.3 | ||
bundle_gemfile: Gemfile | ||
database_url: mysql2://root:[email protected]:10008/rails_event_store | ||
database_url: mysql2://root:[email protected]:10084/rails_event_store | ||
data_type: text | ||
- ruby_version: ruby-3.3 | ||
bundle_gemfile: Gemfile | ||
database_url: mysql2://root:[email protected]:10005/rails_event_store | ||
database_url: mysql2://root:[email protected]:10080/rails_event_store | ||
data_type: text | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,37 +32,37 @@ jobs: | |
DATABASE_URL: "${{ matrix.database_url }}" | ||
DATA_TYPE: "${{ matrix.data_type }}" | ||
services: | ||
postgres_11: | ||
image: postgres:11 | ||
postgres_13: | ||
image: postgres:13 | ||
env: | ||
POSTGRES_DB: rails_event_store | ||
POSTGRES_PASSWORD: secret | ||
ports: | ||
- 10011:5432 | ||
- 10013:5432 | ||
options: --health-cmd "pg_isready" --health-interval 10s --health-timeout 5s --health-retries 5 | ||
postgres_15: | ||
image: postgres:15 | ||
postgres_17: | ||
image: postgres:17 | ||
env: | ||
POSTGRES_DB: rails_event_store | ||
POSTGRES_PASSWORD: secret | ||
ports: | ||
- 10015:5432 | ||
- 10017:5432 | ||
options: --health-cmd "pg_isready" --health-interval 10s --health-timeout 5s --health-retries 5 | ||
mysql_5: | ||
image: mysql:5 | ||
mysql_8: | ||
image: mysql:8.0 | ||
env: | ||
MYSQL_DATABASE: rails_event_store | ||
MYSQL_ROOT_PASSWORD: secret | ||
ports: | ||
- 10005:3306 | ||
- 10080:3306 | ||
options: --health-cmd "mysqladmin ping" --health-interval 10s --health-timeout 5s --health-retries 5 | ||
mysql_8: | ||
image: mysql:8 | ||
mysql_8_4: | ||
image: mysql:8.4 | ||
env: | ||
MYSQL_DATABASE: rails_event_store | ||
MYSQL_ROOT_PASSWORD: secret | ||
ports: | ||
- 10008:3306 | ||
- 10084:3306 | ||
options: --health-cmd "mysqladmin ping" --health-interval 10s --health-timeout 5s --health-retries 5 | ||
strategy: | ||
fail-fast: false | ||
|
@@ -82,27 +82,27 @@ jobs: | |
data_type: text | ||
- ruby_version: ruby-3.3 | ||
bundle_gemfile: Gemfile | ||
database_url: postgres://postgres:secret@localhost:10015/rails_event_store | ||
database_url: postgres://postgres:secret@localhost:10017/rails_event_store | ||
data_type: text | ||
- ruby_version: ruby-3.3 | ||
bundle_gemfile: Gemfile | ||
database_url: postgres://postgres:secret@localhost:10011/rails_event_store | ||
database_url: postgres://postgres:secret@localhost:10013/rails_event_store | ||
data_type: text | ||
- ruby_version: ruby-3.3 | ||
bundle_gemfile: Gemfile | ||
database_url: postgres://postgres:secret@localhost:10015/rails_event_store | ||
database_url: postgres://postgres:secret@localhost:10017/rails_event_store | ||
data_type: json | ||
- ruby_version: ruby-3.3 | ||
bundle_gemfile: Gemfile | ||
database_url: postgres://postgres:secret@localhost:10015/rails_event_store | ||
database_url: postgres://postgres:secret@localhost:10017/rails_event_store | ||
data_type: jsonb | ||
- ruby_version: ruby-3.3 | ||
bundle_gemfile: Gemfile | ||
database_url: mysql2://root:[email protected]:10008/rails_event_store | ||
database_url: mysql2://root:[email protected]:10084/rails_event_store | ||
data_type: text | ||
- ruby_version: ruby-3.3 | ||
bundle_gemfile: Gemfile | ||
database_url: mysql2://root:[email protected]:10005/rails_event_store | ||
database_url: mysql2://root:[email protected]:10080/rails_event_store | ||
data_type: text | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|