From a80f646616e4a0b0df503bbef9acc4b408e943df Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Thu, 11 Apr 2024 02:10:20 +0900 Subject: [PATCH] Explicily lock turbo_tests to 2.2.0 in Gemfile Ruby-core CI is having issues with turbo_tests 2.2.1. This version adds json as a dependency and the `bundle install` command ruby-core uses is not able to compile it for some reason. I was not able to reproduce the issue locally, so this needs more investigation. We're already locked to 2.2.0, but ruby-core does not use a `Gemfile.lock` so we need to lock explicitly in the Gemfile for now. --- tool/bundler/dev_gems.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tool/bundler/dev_gems.rb b/tool/bundler/dev_gems.rb index acf7335578..74f4190f11 100644 --- a/tool/bundler/dev_gems.rb +++ b/tool/bundler/dev_gems.rb @@ -7,7 +7,7 @@ gem "rake", "~> 13.1" gem "rb_sys" gem "webrick", "~> 1.6" -gem "turbo_tests", "= 2.1.0" +gem "turbo_tests", "= 2.2.0" gem "parallel_tests", "< 3.9.0" gem "parallel", "~> 1.19" gem "rspec-core", "~> 3.12"