Skip to content

Commit

Permalink
Fix CI installing incompatible ffi version
Browse files Browse the repository at this point in the history
  • Loading branch information
imjoehaines committed Jun 10, 2024
1 parent 7bf7914 commit f7b3a21
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions features/fixtures/rails7/app/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ gem "sprockets-rails"
# Install a compatible sqlite version on Ruby <3.0
gem "sqlite3", RUBY_VERSION >= '3.0' ? "~> 1.7" : "< 1.7"

gem "ffi", RUBY_VERSION >= '3.0' ? "~> 1.17" : "< 1.17"

# Use the Puma web server [https://github.com/puma/puma]
gem "puma", "~> 5.0"

Expand Down
2 changes: 2 additions & 0 deletions features/fixtures/rails_integrations/app/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ if RUBY_VERSION >= '3.0.0'
gem 'redis-namespace', github: 'resque/redis-namespace', ref: 'c31e63dc3cd5e59ef5ea394d4d46ac60d1e6f82e'
end

gem "ffi", RUBY_VERSION >= '3.0' ? "~> 1.17" : "< 1.17"

gem 'resque', '~> 2.0'
gem 'sidekiq', '~> 6.1'

Expand Down

0 comments on commit f7b3a21

Please sign in to comment.