mirror of
https://github.com/oven-sh/bun
synced 2026-02-14 12:51:54 +00:00
ci: lower linux test agents from xlarge to large
This commit is contained in:
@@ -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",
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user