Revert "Rakefile: make the whole thing parallel unless SERIAL=1"

This reverts commit fc624020e6.

The rake command runs sequentially by default, with optional parallel execution.
Enabling parallelization for mruby builds by default can make troubleshooting issues more difficult.
Furthermore, switching from parallel to sequential execution requires using environment variables instead of rake command switches, which may confuse users.
This commit is contained in:
dearblue
2025-09-29 22:13:06 +09:00
parent 531823546b
commit 931282093d
-1
View File
@@ -4,7 +4,6 @@ MRUBY_ROOT = File.dirname(File.expand_path(__FILE__))
MRUBY_BUILD_HOST_IS_CYGWIN = RUBY_PLATFORM.include?('cygwin')
MRUBY_BUILD_HOST_IS_OPENBSD = RUBY_PLATFORM.include?('openbsd')
Rake.application.options.always_multitask = true unless ENV["SERIAL"]
Rake.verbose(false) if Rake.verbose == Rake::DSL::DEFAULT
$LOAD_PATH << File.join(MRUBY_ROOT, "lib")