Skip to content

Commit 086cd2d

Browse files
committed
ci: make sure rcd_test is using the local RCD
1 parent 869e4c5 commit 086cd2d

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,6 @@ jobs:
7474
7575
- name: Build rcd_test.gem
7676
run: |
77-
gem build rake-compiler-dock.gemspec
78-
gem install -l rake-compiler-dock-*.gem
7977
cd test/rcd_test/
8078
bundle install
8179
bundle exec rake clean clobber

test/rcd_test/Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ gemspec
77

88
gem "rake", "~> 13.0"
99
gem "rake-compiler"
10-
gem "rake-compiler-dock"
10+
gem "rake-compiler-dock", path: "../.."
1111
gem "minitest", "~> 5.0"

test/rcd_test/Rakefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ namespace "gem" do
2727
task 'prepare' do
2828
require 'rake_compiler_dock'
2929
require 'io/console'
30-
sh "bundle package --all"
30+
sh "bundle package"
3131
sh "mkdir -p tmp/gem"
3232
sh "cp ~/.gem/gem-*.pem tmp/gem/ || true"
3333
unless ENV['CI']
@@ -55,7 +55,7 @@ namespace "gem" do
5555
desc "Build a jruby gem"
5656
task "jruby" do
5757
require 'rake_compiler_dock'
58-
sh "bundle package --all"
58+
sh "bundle package"
5959
RakeCompilerDock.sh <<-EOT, rubyvm: "jruby", platform: "jruby", mountdir: Dir.pwd + "/../.."
6060
mvn archetype:generate -DartifactId=test -DarchetypeVersion=1.4 -DinteractiveMode=false -DgroupId=test -Dpackage=test &&
6161
bundle --local &&

0 commit comments

Comments
 (0)