Skip to content

Commit db23ffd

Browse files
committed
Enable somewhat more debug output in the CI
1 parent f19a086 commit db23ffd

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

test/rcd_test/Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ namespace "gem" do
4646
RakeCompilerDock.sh <<-EOT, platform: plat, mountdir: Dir.pwd + "/../.."
4747
(cp tmp/gem/gem-*.pem ~/.gem/ || true) &&
4848
bundle --local &&
49-
rake native:#{plat} pkg/#{exttask.gem_spec.full_name}-#{plat}.gem #{config}
49+
rake native:#{plat} pkg/#{exttask.gem_spec.full_name}-#{plat}.gem "MAKE=make V=1" #{config}
5050
EOT
5151
end
5252
end

test/rcd_test/ext/mri/extconf.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,11 @@
1111
puts "-"*70
1212
puts "CONFIG['arch']: #{CONFIG['arch'].inspect}"
1313
puts "CONFIG['sitearch']: #{CONFIG['sitearch'].inspect}"
14+
puts "CONFIG['host']: #{CONFIG['host'].inspect}"
1415
puts "CONFIG['RUBY_SO_NAME']: #{CONFIG['RUBY_SO_NAME'].inspect}"
1516
puts "RUBY_PLATFORM: #{RUBY_PLATFORM.inspect}"
1617
puts "Gem::Platform.local.to_s: #{Gem::Platform.local.to_s.inspect}"
18+
puts "cc --version: #{ %x[#{CONFIG['CC']} --version].lines.first}"
1719
puts "-"*70
1820

1921
have_func('rb_thread_call_without_gvl', 'ruby/thread.h') ||

0 commit comments

Comments
 (0)