Skip to content

Commit

Permalink
test: sequel-add-testing-different-gem-versions (#418)
Browse files Browse the repository at this point in the history
Signed-off-by: arjun-rajappa <[email protected]>
  • Loading branch information
arjun-rajappa authored Sep 11, 2024
1 parent d9fe117 commit 18cac7b
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,9 @@ workflows:
- ruby_34
- ruby_34_mysql2
gemfile:
- "./gemfiles/sequel_50.gemfile"
- "./gemfiles/sequel_56.gemfile"
- "./gemfiles/sequel_57.gemfile"
- "./gemfiles/sequel_58.gemfile"
report_coverage:
jobs:
- report_coverage
2 changes: 1 addition & 1 deletion gemfiles/sequel_50.gemfile → gemfiles/sequel_56.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ gem "webmock"
gem "puma"
gem "rack-test"
gem "simplecov", "~> 0.21.2"
gem "sequel", ">= 5.0"
gem "sequel", "~> 5.60"
gem "sqlite3", "~> 1.4"
gem "mysql2", "0.5.5"

Expand Down
16 changes: 16 additions & 0 deletions gemfiles/sequel_57.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# This file was generated by Appraisal

# (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 "sequel", "~> 5.70"
gem "sqlite3", "~> 1.4"
gem "mysql2", "0.5.5"

gemspec path: "../"
16 changes: 16 additions & 0 deletions gemfiles/sequel_58.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# This file was generated by Appraisal

# (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 "sequel", ">= 5.80"
gem "sqlite3", "~> 1.4"
gem "mysql2", "0.5.5"

gemspec path: "../"

0 comments on commit 18cac7b

Please sign in to comment.