Skip to content

Commit

Permalink
Regenerate test workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
mpraglowski committed Feb 19, 2025
1 parent 7cba382 commit 0ff4f8e
Show file tree
Hide file tree
Showing 5 changed files with 75 additions and 75 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/dres_rails_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,49 +34,49 @@ 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
strategy:
fail-fast: false
matrix:
include:
- 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.2
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.1
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
steps:
- uses: actions/checkout@v4
Expand Down
38 changes: 19 additions & 19 deletions .github/workflows/ruby_event_store-active_record_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/ruby_event_store-outbox_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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:
Expand Down
36 changes: 18 additions & 18 deletions .github/workflows/ruby_event_store-rom_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
36 changes: 18 additions & 18 deletions .github/workflows/ruby_event_store-sequel_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 0ff4f8e

Please sign in to comment.