From a2074fc95008b6e8540556db998386b49096091b Mon Sep 17 00:00:00 2001 From: Yuta Saito Date: Fri, 21 Feb 2025 08:56:34 +0000 Subject: [PATCH] Revert concurrency throttling for CI --- extensions/cxx_debugging/tools/bootstrap.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/extensions/cxx_debugging/tools/bootstrap.py b/extensions/cxx_debugging/tools/bootstrap.py index 296387808df..2321d0bb5ad 100755 --- a/extensions/cxx_debugging/tools/bootstrap.py +++ b/extensions/cxx_debugging/tools/bootstrap.py @@ -190,9 +190,6 @@ def stage2(source_dir, stage1_dir, OPTIONS): maybe_cmake(binary_dir, cmake_args, OPTIONS.verbose) num_cores = os.cpu_count() - # HACK: throttle the number of cores to avoid OOM on the CI - if os.getenv('CI'): - num_cores = min(num_cores, 1) env = os.environ.copy()