Stop immediate flush to stdout/stderr when running in parallel on CI

During parallel execution (build), it is sometimes flushed before line
breaks, and lines are concatenated.
This commit is contained in:
KOBAYASHI Shuji
2021-01-08 15:59:08 +09:00
parent 1cc1ade610
commit dbe387a9d8
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']