Skip to content

Commit 67e56a0

Browse files
authored
Add malvex-nixos-x86_64 worker (#658)
1 parent 48d410a commit 67e56a0

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

master/custom/builders.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -330,6 +330,11 @@
330330
("PPC64LE Fedora Rawhide NoGIL refleaks", "cstratak-fedora-rawhide-ppc64le", UnixNoGilRefleakBuild),
331331
("s390x Fedora Rawhide NoGIL refleaks", "cstratak-fedora-rawhide-s390x", UnixNoGilRefleakBuild),
332332

333+
# Linux x86-64 NixOS Unstable
334+
("AMD64 NixOS Unstable", "malvex-nixos-x86_64", UnixBuild),
335+
("AMD64 NixOS Unstable Refleaks", "malvex-nixos-x86_64", UnixRefleakBuild),
336+
("AMD64 NixOS Unstable Perf", "malvex-nixos-x86_64", UnixPerfBuild),
337+
333338
# AIX ppc64
334339
("PPC64 AIX", "edelsohn-aix-ppc64", AIXBuild),
335340
("PPC64 AIX XLC", "edelsohn-aix-ppc64", AIXBuildWithXLC),

master/custom/workers.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -341,4 +341,9 @@ def get_workers(settings):
341341
not_branches=['3.10', '3.11', '3.12'],
342342
parallel_builders=1, # All builds use the same emulator and app ID.
343343
),
344+
cpw(
345+
name="malvex-nixos-x86_64",
346+
tags=['linux', 'unix', 'nixos', 'amd64', 'x86-64'],
347+
parallel_tests=10,
348+
),
344349
]

0 commit comments

Comments
 (0)