ruby-changes:60311
From: Takashi <ko1@a...>
Date: Sat, 7 Mar 2020 02:39:32 +0900 (JST)
Subject: [ruby-changes:60311] 87ad5ea729 (master): Skip jit_test on some new RubyCI envs for now
https://git.ruby-lang.org/ruby.git/commit/?id=87ad5ea729 From 87ad5ea729735ff6b8f1ac0bb3aad2aedd6f716e Mon Sep 17 00:00:00 2001 From: Takashi Kokubun <takashikkbn@g...> Date: Fri, 6 Mar 2020 09:38:55 -0800 Subject: Skip jit_test on some new RubyCI envs for now diff --git a/test/ruby/test_jit.rb b/test/ruby/test_jit.rb index e3d8f9c..57c632d 100644 --- a/test/ruby/test_jit.rb +++ b/test/ruby/test_jit.rb @@ -43,6 +43,13 @@ class TestJIT < Test::Unit::TestCase https://github.com/ruby/ruby/blob/trunk/test/ruby/test_jit.rb#L43 skip 'JIT seems not supported on this platform' end + # freebsd12: cc1 internal failure https://rubyci.org/logs/rubyci.s3.amazonaws.com/freebsd12/ruby-master/log/20200306T103003Z.fail.html.gz + # rhel8: one or more PCH files were found, but they were invalid https://rubyci.org/logs/rubyci.s3.amazonaws.com/rhel8/ruby-master/log/20200306T153003Z.fail.html.gz + case ENV['RUBYCI_NICKNAME'] + when 'freebsd12', 'rhel8' + skip 'investigating failures on RubyCI' + end + # ruby -w -Itest/lib test/ruby/test_jit.rb if $VERBOSE && !defined?(@@at_exit_hooked) at_exit do -- cgit v0.10.2 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/