File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed
Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 3333
3434 res = URI.parse("https://stdgems.org/bundled_gems.json").read
3535 bundled_gems = JSON.parse(res)["gems"].map{_1["gem"]}
36- system "gem uninstall #{bundled_gems.join(" ")}", exception: true
36+ system "gem uninstall #{bundled_gems.join(" ")} --force ", exception: true
3737 '
3838 - name : bundle install
3939 run : |
Original file line number Diff line number Diff line change 2222Rake ::TestTask . new ( test : :compile , &test_config )
2323
2424unless Gem . win_platform?
25- require "ruby_memcheck"
25+ begin
26+ require "ruby_memcheck"
2627
27- namespace :test do
28- RubyMemcheck ::TestTask . new ( valgrind : :compile , &test_config )
28+ namespace :test do
29+ RubyMemcheck ::TestTask . new ( valgrind : :compile , &test_config )
30+ end
31+ rescue LoadError => exn
32+ STDERR . puts "🚨🚨🚨🚨 Skipping RubyMemcheck: #{ exn . inspect } 🚨🚨🚨🚨"
2933 end
3034end
3135
You can’t perform that action at this time.
0 commit comments