Skip to content

Commit d2aea45

Browse files
authored
Replace diegorusso AArch64 worker (#635)
The old machine has been decommisioned and replaced with a new more powerful one. This is an AmpereOne with 192 cores and 500GB of memory.
1 parent 8fa3f3c commit d2aea45

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

master/custom/builders.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,8 +114,6 @@
114114
("PPC64LE RHEL8 LTO", "cstratak-RHEL8-ppc64le", LTONonDebugUnixBuild),
115115
("PPC64LE RHEL8 LTO + PGO", "cstratak-RHEL8-ppc64le", LTOPGONonDebugBuild),
116116

117-
("aarch64 Ubuntu 22.04 BigMem", "diegorusso-aarch64-bigmem", UnixBigmemBuild),
118-
119117
# macOS aarch64 clang
120118
("ARM64 macOS", "pablogsal-macos-m1", MacOSArmWithBrewBuild),
121119
("ARM64 MacOS M1 NoGIL", "itamaro-macos-arm64-aws", MacOSArmWithBrewNoGilBuild),
@@ -206,6 +204,10 @@
206204

207205
# -- Unstable Tier-1 builders -------------------------------------------
208206
UNSTABLE_BUILDERS_TIER_1 = [
207+
208+
# Ubuntu Linux AArch64
209+
("aarch64 Ubuntu 24.04 BigMem", "diegorusso-aarch64-bigmem", UnixBigmemBuild),
210+
209211
# Linux x86-64 GCC
210212
# Fedora Rawhide is unstable
211213
("AMD64 Fedora Rawhide", "cstratak-fedora-rawhide-x86_64", FedoraRawhideBuild),

master/custom/factories.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -273,10 +273,10 @@ class UnixBuildWithoutDocStrings(UnixBuild):
273273
class UnixBigmemBuild(UnixBuild):
274274
buildersuffix = ".bigmem"
275275
testFlags = [
276-
"-M60g", "-j4", "-uall,extralargefile",
276+
"-M60g", "-j8", "-uall,extralargefile",
277277
"--prioritize=test_bigmem,test_lzma,test_bz2,test_re,test_array"
278278
]
279-
test_timeout = TEST_TIMEOUT * 4
279+
test_timeout = TEST_TIMEOUT * 5
280280
factory_tags = ["bigmem"]
281281

282282

master/custom/workers.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,8 +152,8 @@ def get_workers(settings):
152152
cpw(
153153
name="diegorusso-aarch64-bigmem",
154154
tags=['linux', 'unix', 'ubuntu', 'arm', 'arm64', 'aarch64', 'bigmem'],
155-
not_branches=['3.9', '3.10', '3.11', '3.12', '3.13'],
156-
parallel_tests=4,
155+
not_branches=['3.9', '3.10', '3.11', '3.12', '3.13', '3.14'],
156+
parallel_tests=8,
157157
),
158158
cpw(
159159
name="cstratak-fedora-rawhide-s390x",

0 commit comments

Comments
 (0)