Skip to content
Snippets Groups Projects
Commit 3962a452 authored by Stan Hu's avatar Stan Hu
Browse files

Fix Chef patches to work with any Ruby version

The previous patches assumed Ruby 3.0.x were used. This commit detects
which Ruby version is installed and patches the files accordingly.

We now extract the Gem path from `Gem.path` and use that as the base
directory.

Part of https://gitlab.com/groups/gitlab-org/-/epics/10034

Changelog: changed
parent 88bea4d7
No related branches found
No related tags found
1 merge request!100Upstream Merge of 16.1 CE branching point
......@@ -14,6 +14,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
require 'mixlib/shellout'
name 'chef-gem'
# The version here should be in agreement with /Gemfile.lock so that our rspec
......@@ -44,6 +45,7 @@
" --bindir '#{install_dir}/embedded/bin'" \
' --no-document', env: env
patch source: "Version-17-EOL-detection.patch",
target: "#{install_dir}/embedded/lib/ruby/gems/3.0.0/gems/chef-#{version}/lib/chef/client.rb"
block 'patch Chef files' do
prefix_path = "#{install_dir}/embedded"
gem_path = shellout!("#{embedded_bin('ruby')} -e \"puts Gem.path.find { |path| path.start_with?(\'#{prefix_path}\') }\"", env: env).stdout.chomp
......@@ -49,4 +51,8 @@
patch source: "utf8-locale-support.patch",
target: "#{install_dir}/embedded/lib/ruby/gems/3.0.0/gems/chef-config-#{version}/lib/chef-config/config.rb"
patch source: "Version-17-EOL-detection.patch",
target: "#{gem_path}/gems/chef-#{version}/lib/chef/client.rb"
patch source: "utf8-locale-support.patch",
target: "#{gem_path}/gems/chef-config-#{version}/lib/chef-config/config.rb"
end
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment