configured ASAN/TSAN jobs as privileged

This commit is contained in:
joaquintides 2024-07-14 16:41:21 +02:00 committed by GitHub
parent d61719a196
commit e354fb432b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -10,8 +10,8 @@ local triggers =
};
local ubsan = { UBSAN: '1', UBSAN_OPTIONS: 'print_stacktrace=1' };
local asan = { ASAN: '1' };
local tsan = { TSAN: '1' };
local asan = { ASAN: '1', ASAN_OPTIONS: 'privileged=True' };
local tsan = { TSAN: '1' TSAN_OPTIONS: 'privileged=True' };
local linux_pipeline(name, image, environment, packages = "", sources = [], arch = "amd64") =
{