Skip to content

Commit 53d053e

Browse files
Clemens Beckbalasankarc
authored andcommitted
Remove bundler for deps yml
The bundler pattern had an escaping issue causing an error in deps pipelines: ``` panic: Pattern not found in file ``` Even with the proper escaped pattern, the bundler replace did not work as expected (it used the rubygems version instead). Remove bundler to unblock master/deps io pipelines. Closes https://gitlab.com/gitlab-org/omnibus-gitlab/-/issues/8335
1 parent 7dc8f7c commit 53d053e

File tree

1 file changed

+1
-13
lines changed

1 file changed

+1
-13
lines changed

deps.yml

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -123,24 +123,12 @@ dependencies:
123123
replace_in_files:
124124
- filename: config/software/remote-syslog.rb
125125
pattern: "default_version '(\\S+)'"
126-
# rubygems and bundler
126+
# rubygems
127127
https://github.com/rubygems/rubygems.git:
128128
replace_in_files:
129129
- filename: config/software/rubygems.rb
130130
pattern: "default_version '(\\S+)'"
131131
range: '<= 3.x'
132-
- filename: .gitlab-ci.yml
133-
pattern: 'BUNDLER_VERSION: "(\\S+)"'
134-
tag_filter:
135-
matching: 'bundler-v(\\S+)'
136-
sort_as: '$1'
137-
range: '<= 3.x'
138-
- filename: Gemfile.lock
139-
pattern: 'BUNDLED WITH\n (\\S+)'
140-
tag_filter:
141-
matching: 'bundler-v(\\S+)'
142-
sort_as: '$1'
143-
range: '<= 3.x'
144132
# zlib
145133
https://github.com/madler/zlib.git:
146134
replace_in_files:

0 commit comments

Comments
 (0)