ci: Fix CPU count on build runners

This commit is contained in:
Ashcon Partovi
2024-12-05 14:20:05 -08:00
parent fa6ac405a4
commit eacf89e5bf

View File

@@ -304,7 +304,7 @@ function getCppAgent(platform) {
return getEc2Agent(platform, {
instanceType: arch === "aarch64" ? "c8g.16xlarge" : "c7i.16xlarge",
cpuCount: 64,
cpuCount: 32,
threadsPerCore: 1,
});
}
@@ -329,7 +329,7 @@ function getZigAgent(platform) {
// },
// {
// instanceType: arch === "aarch64" ? "c8g.2xlarge" : "c7i.2xlarge",
// cpuCount: 8,
// cpuCount: 4,
// threadsPerCore: 1,
// },
// );