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
1 change: 1 addition & 0 deletions master/custom/builders.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,7 @@
("AMD64 Arch Linux Asan Debug", "pablogsal-arch-x86_64", UnixAsanDebugBuild),
("AMD64 Arch Linux TraceRefs", "pablogsal-arch-x86_64", UnixTraceRefsBuild),
("AMD64 Arch Linux Perf", "pablogsal-arch-x86_64", UnixPerfBuild),
("ARM Raspbian Linux Asan", "pablogsal-rasp", UnixAsanBuild),
# UBSAN with -fno-sanitize=function, without which we currently fail (as
# tracked in gh-111178). The full "AMD64 Arch Linux Usan" is unstable, below
("AMD64 Arch Linux Usan Function", "pablogsal-arch-x86_64", ClangUbsanFunctionLinuxBuild),
Expand Down
5 changes: 5 additions & 0 deletions master/custom/workers.py
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,11 @@ def get_workers(settings):
tags=['macOS', 'unix', 'arm', 'arm64'],
parallel_tests=4,
),
cpw(
name="pablogsal-rasp",
tags=['linux', 'unix', 'raspbian', 'debian', 'arm'],
parallel_tests=2,
),
cpw(
name="skumaran-ubuntu-x86_64",
tags=['linux', 'unix', 'ubuntu', 'amd64', 'x86-64'],
Expand Down