File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
nix/packages/github-matrix Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -70,10 +70,10 @@ class NixEvalError(TypedDict):
7070BUILD_RUNNER_MAP : Dict [RunnerType , Dict [System , RunsOnConfig ]] = {
7171 "ephemeral" : {
7272 "aarch64-linux" : {
73- "labels" : ["blacksmith-4vcpu- ubuntu-2404 -arm" ],
73+ "labels" : ["depot- ubuntu-24.04 -arm-8 " ],
7474 },
7575 "x86_64-linux" : {
76- "labels" : ["blacksmith-8vcpu- ubuntu-2404 " ],
76+ "labels" : ["depot- ubuntu-24.04-8 " ],
7777 },
7878 },
7979 "self-hosted" : {
@@ -262,8 +262,8 @@ def get_runner_for_package(pkg: NixEvalJobsOutput) -> RunsOnConfig | None:
262262 return runConfig
263263
264264 if is_large_pkg (pkg ) and system in ("x86_64-linux" , "aarch64-linux" ):
265- suffix = "- arm" if system == "aarch64-linux" else ""
266- return {"labels" : [f"blacksmith-32vcpu- ubuntu-2404 { suffix } " ]}
265+ arch = "arm- " if system == "aarch64-linux" else ""
266+ return {"labels" : [f"depot- ubuntu-24.04- { arch } 32 " ]}
267267
268268 if system == "aarch64-darwin" :
269269 return BUILD_RUNNER_MAP ["self-hosted" ]["aarch64-darwin" ]
You can’t perform that action at this time.
0 commit comments