From eacf89e5bfe25c9970bd44be0fee043b0d834972 Mon Sep 17 00:00:00 2001 From: Ashcon Partovi Date: Thu, 5 Dec 2024 14:20:05 -0800 Subject: [PATCH] ci: Fix CPU count on build runners --- .buildkite/ci.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.buildkite/ci.mjs b/.buildkite/ci.mjs index e3adb70fb1..a4af8802b7 100755 --- a/.buildkite/ci.mjs +++ b/.buildkite/ci.mjs @@ -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, // }, // );