From 9c5300a0b7dd5250479f8963a2878b0d8a3669e6 Mon Sep 17 00:00:00 2001 From: Meghan Denny Date: Fri, 8 Aug 2025 20:24:33 -0700 Subject: [PATCH] ci: lower linux test agents from xlarge to large --- .buildkite/ci.mjs | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.buildkite/ci.mjs b/.buildkite/ci.mjs index 4403decaa6..43bf68b7a0 100755 --- a/.buildkite/ci.mjs +++ b/.buildkite/ci.mjs @@ -381,18 +381,16 @@ function getTestAgent(platform, options) { }; } - if (arch === "aarch64") { + if (os === "windows") { return getEc2Agent(platform, options, { - instanceType: "c8g.xlarge", + instanceType: arch === "aarch64" ? "c8g.xlarge" : "c7i.xlarge", cpuCount: 2, threadsPerCore: 1, }); } return getEc2Agent(platform, options, { - instanceType: "c7i.xlarge", - cpuCount: 2, - threadsPerCore: 1, + instanceType: arch === "aarch64" ? "c8g.large" : "c7i.large", }); }