Skip to content
Snippets Groups Projects
Commit ebb10b6e authored by DJ Mountney's avatar DJ Mountney
Browse files

Merge branch 'rc-gitaly-clean-grpc-too' into 'master'

Delete grpc shared objects pulled in by gitaly

See merge request gitlab-org/omnibus-gitlab!2344
parents e160b543 fdb629c2
No related branches found
No related tags found
No related merge requests found
......@@ -37,6 +37,13 @@
bundle 'install', env: env, cwd: ruby_build_dir
touch '.ruby-bundle' # Prevent 'make install' below from running 'bundle install' again
block 'delete grpc shared objects' do
# Delete unused shared objects included in grpc gem
grpc_path = shellout!("#{embedded_bin('bundle')} show grpc", env: env, cwd: ruby_build_dir).stdout.strip
ruby_ver = shellout!("#{embedded_bin('ruby')} -e 'puts RUBY_VERSION.match(/\\d+\\.\\d+/)[0]'", env: env).stdout.chomp
command "find #{File.join(grpc_path, 'src/ruby/lib/grpc')} ! -path '*/#{ruby_ver}/*' -name 'grpc_c.so' -type f -print -delete"
end
ruby_install_dir = "#{install_dir}/embedded/service/gitaly-ruby"
command "mkdir -p #{ruby_install_dir}"
sync './ruby/', "#{ruby_install_dir}/", exclude: ['.git', '.gitignore', 'spec', 'features']
......
......@@ -85,7 +85,7 @@
shellout!("#{embedded_bin('gem')} uninstall --force google-protobuf", env: env)
shellout!("#{embedded_bin('gem')} install google-protobuf --version #{protobuf_version} --platform=ruby", env: env)
# Delete unsed shared objects included in grpc gem
# Delete unused shared objects included in grpc gem
grpc_path = shellout!("#{embedded_bin('bundle')} show grpc", env: env).stdout.strip
ruby_ver = shellout!("#{embedded_bin('ruby')} -e 'puts RUBY_VERSION.match(/\\d+\\.\\d+/)[0]'", env: env).stdout.chomp
command "find #{File.join(grpc_path, 'src/ruby/lib/grpc')} ! -path '*/#{ruby_ver}/*' -name 'grpc_c.so' -type f -print -delete"
......
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