Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions master/custom/builders.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
ClangUbsanFunctionLinuxBuild,
ClangUnixInstalledBuild,
SharedUnixBuild,
SlowDebugUnixBuild,
SlowNonDebugUnixBuild,
SlowUnixInstalledBuild,
NonDebugUnixBuild,
Expand Down Expand Up @@ -309,6 +310,9 @@

# Emscripten
("WASM Emscripten", "rkm-emscripten", EmscriptenBuild),

# Linux aarch64 GCC/Clang
("ARM64 Raspbian Debug", "savannah-raspbian", SlowDebugUnixBuild),
]


Expand Down
5 changes: 5 additions & 0 deletions master/custom/factories.py
Original file line number Diff line number Diff line change
Expand Up @@ -377,6 +377,11 @@ class SlowNonDebugUnixBuild(NonDebugUnixBuild):
testFlags = [*NonDebugUnixBuild.testFlags, "-u-cpu"]


class SlowDebugUnixBuild(UnixBuild):
test_timeout = SLOW_TIMEOUT
testFlags = [*UnixBuild.testFlags, "-u-cpu"]


class SlowUnixInstalledBuild(UnixInstalledBuild):
test_timeout = SLOW_TIMEOUT

Expand Down
6 changes: 6 additions & 0 deletions master/custom/workers.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,12 @@ def get_workers(settings):
# Tests fail with latin1 encoding on 3.12, probably earlier
not_branches=['3.12', '3.11', '3.10', '3.9']
),
cpw(
name="savannah-raspbian",
tags=['linux', 'unix', 'raspbian', 'debian', 'armv8',
'aarch64', 'arm'],
parallel_tests=4,
),
cpw(
name="kulikjak-solaris-sparcv9",
tags=['solaris', 'unix', 'sparc', 'sparcv9'],
Expand Down