From 931282093d25caf83295c7a722d5d69566bfff88 Mon Sep 17 00:00:00 2001 From: dearblue Date: Mon, 29 Sep 2025 22:13:06 +0900 Subject: [PATCH] Revert "Rakefile: make the whole thing parallel unless SERIAL=1" This reverts commit fc624020e6ac13427e61d97a8e63b68f73073939. 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. --- Rakefile | 1 - 1 file changed, 1 deletion(-) diff --git a/Rakefile b/Rakefile index 5d8ba4945..c7488bc65 100644 --- a/Rakefile +++ b/Rakefile @@ -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")