Skip to content

Commit

Permalink
Also avoid bigdecimal CI dependency on Ruby 2.0
Browse files Browse the repository at this point in the history
To avoid another segfault.
  • Loading branch information
jeremyevans committed Sep 19, 2023
1 parent 7716af0 commit 9588e06
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .ci.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,9 @@ else
gem 'minitest', '>= 5.7.0'
end

if RUBY_VERSION < '2.0'
# don't require bigdecimal, because bigdecimal 1.1.0 gem is
# not the same as the bigdecimal library that ships in Ruby 1.9.3
# (which is labeled 1.1.0).
if RUBY_VERSION < '2.1'
# don't require bigdecimal, use standard library bigdecimal,
# as gem bigdecimal causes CI segfaults
elsif RUBY_VERSION < '2.4'
gem 'bigdecimal', '<1.3'
else
Expand Down

0 comments on commit 9588e06

Please sign in to comment.