ci: use ARM EC2 instances for build-zig (#19781)

This commit is contained in:
190n
2025-05-20 12:41:06 -07:00
committed by GitHub
parent 1ebec90d6e
commit d1ac52da2c

View File

@@ -331,16 +331,14 @@ function getZigAgent(platform, options) {
return getEc2Agent(
{
os: "linux",
arch: "x64",
arch: "aarch64",
abi: "musl",
distro: "alpine",
release: "3.21",
},
options,
{
instanceType: "c7i.2xlarge",
cpuCount: 4,
threadsPerCore: 1,
instanceType: "r8g.large",
},
);
}