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: start rails 8.0 testing #436

Merged
merged 2 commits into from
Nov 13, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Next Next commit
ci: start rails 8.0 testing
Signed-off-by: Arjun Rajappa <Arjun.Rajappa@ibm.com>
  • Loading branch information
arjun-rajappa committed Nov 12, 2024
commit 88a66a33f2dc48b2973c7b2a041b5f596c1b1bf1
1 change: 1 addition & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -443,6 +443,7 @@ workflows:
- "./gemfiles/rails_61.gemfile"
- "./gemfiles/rails_70.gemfile"
- "./gemfiles/rails_71.gemfile"
- "./gemfiles/rails_80.gemfile"
sequel:
jobs:
- test_apprisal:
Expand Down
17 changes: 17 additions & 0 deletions gemfiles/rails_80.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# (c) Copyright IBM Corp. 2024

source "https://rubygems.org"

gem "minitest-reporters"
gem "webmock"
gem "puma"
gem "rack-test"
gem "simplecov", "~> 0.21.2"
gem "mail", ">= 2.8.1"
gem "mutex_m" # mutex_m is not part of the default gems since Ruby 3.4.0
gem "rails", ">= 8.0"
gem "mysql2", "0.5.5"
gem "pg"
gem "sqlite3", ">= 2.1"

gemspec path: "../"
Loading