Merge branch 'pin-parser-version-in-chef-bin' into 'master'

Pin parser dependency in chef-bin

See merge request https://gitlab.com/gitlab-org/omnibus-gitlab/-/merge_requests/7572

Merged-by: Robert Marshall <rmarshall@gitlab.com>
Approved-by: Robert Marshall <rmarshall@gitlab.com>
Co-authored-by: Ryan Egesdahl <deriamis@gmail.com>
This commit is contained in:
Robert Marshall 2024-04-27 01:11:20 +00:00
commit 6fab34cacb
1 changed files with 11 additions and 0 deletions

View File

@ -32,6 +32,17 @@ build do
env = with_standard_compiler_flags(with_embedded_path)
patch source: 'add-license-file.patch'
# TODO: rubocop-ast installs a later version of parser, which omits the AST::Processor
# mixin, causing breakage. This is a temporary workaround until a more permanent fix
# is in place: https://gitlab.com/gitlab-org/omnibus-gitlab/-/merge_requests/7362
gem 'install parser' \
" --clear-sources" \
" -s https://packagecloud.io/cinc-project/stable" \
" -s https://rubygems.org" \
" --version '3.3.0.5'" \
" --bindir '#{install_dir}/embedded/bin'" \
' --no-document', env: env
# Temporary workaround because upstream inspec-core does not list this as
# a requirement and it causes failures during gitlab-ctl reconfigure in
# the QA job pipelines