mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
830b2e217b
GitLab CI now needs the default keyword on specification of image and before_script. https://docs.gitlab.com/ee/ci/yaml/#default Signed-off-by: Takuya Noguchi <takninnovationresearch@gmail.com> https://github.com/rubygems/rubygems/commit/b79e78e733
10 lines
182 B
Text
10 lines
182 B
Text
default:
|
|
image: ruby:<%= RUBY_VERSION %>
|
|
|
|
before_script:
|
|
- gem install bundler -v <%= Bundler::VERSION %>
|
|
- bundle install
|
|
|
|
example_job:
|
|
script:
|
|
- bundle exec rake
|