Skip to content

Commit b986fae

Browse files
committed
feat: use 8 vCPU runner for aarch64 builds
Use the same 8 vCPU runner for aarch64 builds as used for x86_64 builds to improve build performance.
1 parent be572d8 commit b986fae

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

nix/packages/github-matrix/github_matrix.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ 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": ["blacksmith-8vcpu-ubuntu-2404-arm"],
7474
},
7575
"x86_64-linux": {
7676
"labels": ["blacksmith-8vcpu-ubuntu-2404"],

nix/packages/github-matrix/tests/test_github_matrix.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ def test_default_aarch64_linux(self):
212212
"system": "aarch64-linux",
213213
}
214214
result = get_runner_for_package(pkg)
215-
assert result == {"labels": ["blacksmith-4vcpu-ubuntu-2404-arm"]}
215+
assert result == {"labels": ["blacksmith-8vcpu-ubuntu-2404-arm"]}
216216

217217

218218
class TestSortPkgsByClosures:

0 commit comments

Comments
 (0)