Skip to content

Commit

Permalink
build(ci): add leak sanitizer
Browse files Browse the repository at this point in the history
  • Loading branch information
metamacro committed Sep 10, 2023
1 parent a77e96a commit cc632fe
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,14 @@ jobs:
options: "-D ENABLE_DEBUG=ON",
}
- {
name: "Asan, Ubsan",
name: "Asan, Ubsan, Lsan",
os: "ubuntu-latest",
build-type: "Debug",
cc: "clang",
options: "-D CMAKE_C_FLAGS=-fsanitize=address,undefined,leak -D ENABLE_DEBUG=ON",
}
- {
name: "Valgrind",
os: "ubuntu-latest",
build-type: "Debug",
cc: "clang",
Expand Down

0 comments on commit cc632fe

Please sign in to comment.