[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 <athom@google.com>
Commit-Queue: Ryan Macnak <rmacnak@google.com>
This commit is contained in:
Ryan Macnak
2022-01-20 16:26:57 +00:00
committed by Commit Bot
parent af4600b584
commit 230bdbd229
+33 -4
View File
@@ -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"
]
},