Skip to content

Commit 50b017c

Browse files
Added address sanitizer to drone.
1 parent 23ea1a2 commit 50b017c

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.drone.star

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -228,5 +228,7 @@ def main(ctx):
228228
linux("clang (usan)", branch, "cppalliance/droneubuntu2404:1", privileged=True, toolset='clang', variant="release", cxxstd="20", debug_symbols="on", undefined_sanitizer="on"),
229229
linux("clang (tsan)", branch, "cppalliance/droneubuntu2404:1", privileged=True, toolset='clang', variant="release", cxxstd="20", debug_symbols="on", thread_sanitizer="on"),
230230
windows("msvc-14.3 (x64)", branch, "cppalliance/dronevs2022:latest", variant="release", cxxstd="20", address_model="64"),
231+
windows("msvc-14.3 (x64) asan" , branch, "cppalliance/dronevs2022:latest", variant="release", cxxstd="20", address_model="64", cxxflags="/fsanitize=address"),
232+
windows("msvc-14.3 (x64) dbg" , branch, "cppalliance/dronevs2022:latest", variant="release", cxxstd="20", address_model="64", debug_symbols="on"),
231233
windows("msvc-14.3 (x32)", branch, "cppalliance/dronevs2022:latest", variant="release", cxxstd="20", address_model="32")
232234
]

0 commit comments

Comments
 (0)