From 230bdbd229c007876fadfbec03e852b5ba592411 Mon Sep 17 00:00:00 2001 From: Ryan Macnak Date: Thu, 20 Jan 2022 16:26:57 +0000 Subject: [PATCH] [infra] Split the fuzzer build into steps to avoid exceeding the maximum number of threads. Change-Id: I311a8b66e113cf99b946a356e3eabc8fadf419e1 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/229065 Reviewed-by: Alexander Thomas Commit-Queue: Ryan Macnak --- tools/bots/test_matrix.json | 37 +++++++++++++++++++++++++++++++++---- 1 file changed, 33 insertions(+), 4 deletions(-) diff --git a/tools/bots/test_matrix.json b/tools/bots/test_matrix.json index 0400f5d7cb8..d638c365d05 100644 --- a/tools/bots/test_matrix.json +++ b/tools/bots/test_matrix.json @@ -3899,21 +3899,50 @@ }, "steps": [ { - "name": "build dart (aot and jit)", + "name": "build dart (x64)", "script": "tools/build.py", "arguments": [ "--mode=debug,release", - "--arch=x64,x64c,simarm64,simarm64c,simriscv32,simriscv64", + "--arch=x64,x64c", "runtime", "dart_precompiled_runtime" ] }, { - "name": "build dart (jit)", + "name": "build dart (arm64)", "script": "tools/build.py", "arguments": [ "--mode=debug,release", - "--arch=ia32,simarm", + "--arch=simarm64,simarm64c", + "runtime", + "dart_precompiled_runtime" + ] + }, + { + "name": "build dart (riscv)", + "script": "tools/build.py", + "arguments": [ + "--mode=debug,release", + "--arch=simriscv32,simriscv64", + "runtime", + "dart_precompiled_runtime" + ] + }, + { + "name": "build dart (ia32)", + "script": "tools/build.py", + "arguments": [ + "--mode=debug,release", + "--arch=ia32", + "runtime" + ] + }, + { + "name": "build dart (arm)", + "script": "tools/build.py", + "arguments": [ + "--mode=debug,release", + "--arch=simarm", "runtime" ] },