summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Rodríguez <deivid.rodriguez@riseup.net>2025-07-31 10:54:59 +0200
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2025-08-04 09:27:51 +0900
commit65612dbb38295bf3cf0bdc5d7d9b65aefaebf500 (patch)
tree5e36c53cf28fc75918f19f484b2ee48a12508826
parent6179cc011829b9e4c7b253ac2d2a3f47d8fd6890 (diff)
[rubygems/rubygems] Fix daily CI
Platform specific versions of ffi-1.17.2 are not compatible with Ruby 3.5, so Bundler fails to resolve in Ruby 3.5 using recorded VCR responses. Use the generic version of ffi-1.17.2, which should work for all rubies, consistently to fix that. https://github.com/rubygems/rubygems/commit/a192f7e35d
-rw-r--r--spec/bundler/realworld/ffi_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/bundler/realworld/ffi_spec.rb b/spec/bundler/realworld/ffi_spec.rb
index ad8b463ce2..bede372b41 100644
--- a/spec/bundler/realworld/ffi_spec.rb
+++ b/spec/bundler/realworld/ffi_spec.rb
@@ -47,7 +47,7 @@ RSpec.describe "loading dynamically linked library on a bundle exec context", re
install_gemfile <<-G
source "https://rubygems.org"
- gem 'ffi'
+ gem 'ffi', force_ruby_platform: true
G
bundle "exec ruby foo.rb"