Skip to content

Commit

Permalink
update rake-compiler commands to install bundler
Browse files Browse the repository at this point in the history
required for building a release

[skip ci]
  • Loading branch information
flavorjones committed Aug 11, 2019
1 parent beb832e commit 077e010
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -329,13 +329,13 @@ end
desc "build a windows gem without all the ceremony"
task "gem:windows" do
require "rake_compiler_dock"
RakeCompilerDock.sh "bundle && rake cross native gem MAKE='nice make -j`nproc`' RUBY_CC_VERSION=#{ENV['RUBY_CC_VERSION']}"
RakeCompilerDock.sh "gem install bundler && bundle && rake cross native gem MAKE='nice make -j`nproc`' RUBY_CC_VERSION=#{ENV['RUBY_CC_VERSION']}"
end

desc "build a jruby gem with docker"
task "gem:jruby" do
require "rake_compiler_dock"
RakeCompilerDock.sh "bundle && rake java gem", rubyvm: 'jruby'
RakeCompilerDock.sh "gem install bundler && bundle && rake java gem", rubyvm: 'jruby'
end

require_relative "tasks/docker"
Expand Down

0 comments on commit 077e010

Please sign in to comment.