Skip to content

Commit 134bca7

Browse files
committed
fix(ci): use depot runners
1 parent 336162b commit 134bca7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

nix/packages/github-matrix/github_matrix.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,10 +70,10 @@ class NixEvalError(TypedDict):
7070
BUILD_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"]

0 commit comments

Comments
 (0)