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

cleanup legacy testing arrays #1837

Merged
merged 1 commit into from
Jan 3, 2025
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/ruby_event_store-protobuf_coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
fail-fast: false
matrix:
include:
- ruby_version: ruby-3.2
- ruby_version: ruby-3.3
bundle_gemfile: Gemfile
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ruby_event_store-protobuf_mutate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
fail-fast: false
matrix:
include:
- ruby_version: ruby-3.2
- ruby_version: ruby-3.3
bundle_gemfile: Gemfile
steps:
- uses: actions/checkout@v4
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/ruby_event_store-protobuf_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,16 +34,19 @@ jobs:
fail-fast: false
matrix:
include:
- ruby_version: ruby-3.3
bundle_gemfile: Gemfile
database_url: sqlite3:db.sqlite3
- ruby_version: ruby-3.2
bundle_gemfile: Gemfile
database_url: sqlite3:db.sqlite3
- ruby_version: ruby-3.1
bundle_gemfile: Gemfile
database_url: sqlite3:db.sqlite3
- ruby_version: ruby-3.2
- ruby_version: ruby-3.3
bundle_gemfile: Gemfile.rails_7_0
database_url: sqlite3:db.sqlite3
- ruby_version: ruby-3.2
- ruby_version: ruby-3.3
bundle_gemfile: Gemfile.rails_6_1
database_url: sqlite3:db.sqlite3
steps:
Expand Down
6 changes: 3 additions & 3 deletions contrib/ruby_event_store-protobuf/Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -121,9 +121,9 @@ GEM
erubi (1.12.0)
globalid (1.2.1)
activesupport (>= 6.1)
google-protobuf (3.25.3-arm64-darwin)
google-protobuf (3.25.3-x86_64-darwin)
google-protobuf (3.25.3-x86_64-linux)
google-protobuf (3.25.5-arm64-darwin)
google-protobuf (3.25.5-x86_64-darwin)
google-protobuf (3.25.5-x86_64-linux)
i18n (1.14.5)
concurrent-ruby (~> 1.0)
io-console (0.7.2)
Expand Down
6 changes: 3 additions & 3 deletions contrib/ruby_event_store-protobuf/Gemfile.rails_6_1.lock
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,9 @@ GEM
erubi (1.12.0)
globalid (1.2.1)
activesupport (>= 6.1)
google-protobuf (3.25.2-arm64-darwin)
google-protobuf (3.25.2-x86_64-darwin)
google-protobuf (3.25.2-x86_64-linux)
google-protobuf (3.25.5-arm64-darwin)
google-protobuf (3.25.5-x86_64-darwin)
google-protobuf (3.25.5-x86_64-linux)
i18n (1.14.5)
concurrent-ruby (~> 1.0)
loofah (2.22.0)
Expand Down
8 changes: 4 additions & 4 deletions contrib/ruby_event_store-protobuf/Gemfile.rails_7_0.lock
Original file line number Diff line number Diff line change
Expand Up @@ -108,10 +108,10 @@ GEM
erubi (1.12.0)
globalid (1.2.1)
activesupport (>= 6.1)
google-protobuf (3.25.2)
google-protobuf (3.25.2-arm64-darwin)
google-protobuf (3.25.2-x86_64-darwin)
google-protobuf (3.25.2-x86_64-linux)
google-protobuf (3.25.5)
google-protobuf (3.25.5-arm64-darwin)
google-protobuf (3.25.5-x86_64-darwin)
google-protobuf (3.25.5-x86_64-linux)
i18n (1.14.5)
concurrent-ruby (~> 1.0)
loofah (2.22.0)
Expand Down
9 changes: 3 additions & 6 deletions support/ci/generate
Original file line number Diff line number Diff line change
Expand Up @@ -123,18 +123,15 @@ class CI
contrib_coverage("ruby_event_store-profiler"),
contrib_test(
"ruby_event_store-protobuf",
matrix:
join(
generate(ruby_version(MRI_RUBY.drop(1)), bundle_gemfile(GEMFILE, RAILS_GEMFILES), database_url(SQLITE3)),
),
matrix: join(generate(ruby_version(MRI_RUBY), bundle_gemfile(GEMFILE, RAILS_GEMFILES), database_url(SQLITE3))),
),
contrib_mutate(
"ruby_event_store-protobuf",
matrix: generate(ruby_version(MRI_RUBY.drop(1).take(1)), bundle_gemfile(GEMFILE)),
matrix: generate(ruby_version(MRI_RUBY.take(1)), bundle_gemfile(GEMFILE)),
),
contrib_coverage(
"ruby_event_store-protobuf",
matrix: generate(ruby_version(MRI_RUBY.drop(1).take(1)), bundle_gemfile(GEMFILE)),
matrix: generate(ruby_version(MRI_RUBY.take(1)), bundle_gemfile(GEMFILE)),
),
contrib_test(
"ruby_event_store-rom",
Expand Down