Merge pull request #5266 from shuujii/stop-immediate-flush-to-stdout-stderr-when-running-in-parallel-on-CI

Stop immediate flush to stdout/stderr when running in parallel on CI
This commit is contained in:
Yukihiro "Matz" Matsumoto
2021-01-08 16:37:50 +09:00
committed by GitHub
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
STDOUT.sync = STDERR.sync = true
STDOUT.sync = STDERR.sync = true unless Rake.application.options.always_multitask
MRuby::Build.new('full-debug') do |conf|
conf.toolchain
+1 -1
View File
@@ -1,4 +1,4 @@
STDOUT.sync = STDERR.sync = true
STDOUT.sync = STDERR.sync = true unless Rake.application.options.always_multitask
def setup_option(conf)
conf.cc.compile_options.sub!(%r{/Zi }, "") unless ENV['CFLAGS']