Skip to content

Commit d47e37e

Browse files
authored
Add new raspbian ASAN worker (#613)
Signed-off-by: Pablo Galindo <[email protected]>
1 parent ad0e71a commit d47e37e

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

master/custom/builders.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -203,6 +203,7 @@
203203
("AMD64 Arch Linux Asan Debug", "pablogsal-arch-x86_64", UnixAsanDebugBuild),
204204
("AMD64 Arch Linux TraceRefs", "pablogsal-arch-x86_64", UnixTraceRefsBuild),
205205
("AMD64 Arch Linux Perf", "pablogsal-arch-x86_64", UnixPerfBuild),
206+
("ARM Raspbian Linux Asan", "pablogsal-rasp", UnixAsanBuild),
206207
# UBSAN with -fno-sanitize=function, without which we currently fail (as
207208
# tracked in gh-111178). The full "AMD64 Arch Linux Usan" is unstable, below
208209
("AMD64 Arch Linux Usan Function", "pablogsal-arch-x86_64", ClangUbsanFunctionLinuxBuild),

master/custom/workers.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -207,6 +207,11 @@ def get_workers(settings):
207207
tags=['macOS', 'unix', 'arm', 'arm64'],
208208
parallel_tests=4,
209209
),
210+
cpw(
211+
name="pablogsal-rasp",
212+
tags=['linux', 'unix', 'raspbian', 'debian', 'arm'],
213+
parallel_tests=2,
214+
),
210215
cpw(
211216
name="skumaran-ubuntu-x86_64",
212217
tags=['linux', 'unix', 'ubuntu', 'amd64', 'x86-64'],

0 commit comments

Comments
 (0)