Skip to content

Commit

Permalink
Replace Ruby 3.4.0-preview2 by 3.4.0-rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
byroot committed Dec 13, 2024
1 parent fbcfe20 commit d7878bb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pipelines/rails-ci/pipeline.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
build_context.rubies << Buildkite::Config::RubyConfig.master_debug_ruby
build_context.default_ruby = Buildkite::Config::RubyConfig.master_ruby
else
build_context.setup_rubies %w(2.4 2.5 2.6 2.7 3.0 3.1 3.2 3.3 3.4.0-preview2)
build_context.setup_rubies %w(2.4 2.5 2.6 2.7 3.0 3.1 3.2 3.3 3.4.0-rc1)
end

group do
Expand Down
4 changes: 2 additions & 2 deletions test/buildkite_config/test_build_context.rb
Original file line number Diff line number Diff line change
Expand Up @@ -169,11 +169,11 @@ def test_setup_preview_rubies

sub.stub(:min_ruby, Gem::Version.new("2.7")) do
sub.stub(:max_ruby, Gem::Version.new("3.5")) do
sub.setup_rubies %w(3.4.0-preview2 3.3 3.2 3.1 3.0)
sub.setup_rubies %w(3.4.0-rc1 3.3 3.2 3.1 3.0)
end
end

assert_equal "3.4.0-preview2", sub.default_ruby.version.to_s
assert_equal "3.4.0-rc1", sub.default_ruby.version.to_s
end

def test_setup_rubies_default_ruby
Expand Down

0 comments on commit d7878bb

Please sign in to comment.