Compare commits

...

1 Commits

Author SHA1 Message Date
Meghan Denny
9c5300a0b7 ci: lower linux test agents from xlarge to large 2025-08-08 20:24:33 -07:00

View File

@@ -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",
});
}