Skip to content

Commit

Permalink
Install bigdecimal unconditional
Browse files Browse the repository at this point in the history
.. since it otherwise disturbs parallel build with rake gem:native
  • Loading branch information
larskanis committed May 31, 2024
1 parent 4172d17 commit 345e3b7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
source 'https://rubygems.org'

group :development do
gem 'bigdecimal' unless RUBY_VERSION =~ /^2\.[4567]|^3\.[012]\./ # necessary on ruby-3.3+
gem 'bigdecimal' # necessary on ruby-3.3+
gem 'bundler', '>= 1.16', '< 3'
gem 'rake', '~> 13.0'
gem 'rake-compiler', '~> 1.1'
Expand Down
2 changes: 1 addition & 1 deletion spec/env/Dockerfile.centos
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ RUN uname -a
RUN sed -i 's/mirrorlist/#mirrorlist/g' /etc/yum.repos.d/CentOS-*
RUN sed -i 's|#baseurl=http://mirror.centos.org|baseurl=http://vault.centos.org|g' /etc/yum.repos.d/CentOS-*

RUN yum install -y ruby git gcc make
RUN yum install -y ruby-devel git gcc make

RUN ruby --version
RUN gem env
Expand Down
2 changes: 1 addition & 1 deletion spec/env/Dockerfile.debian
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ RUN uname -a
RUN apt-get update -qq && \
apt-get install -yq \
-o Dpkg::Options::='--force-confnew' \
ruby \
ruby-dev \
git \
gcc \
make
Expand Down

0 comments on commit 345e3b7

Please sign in to comment.