We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5dacc85 commit 3457c91Copy full SHA for 3457c91
.github/workflows/ci.yaml
@@ -29,8 +29,11 @@ jobs:
29
-Wno-unused-parameter -Wno-unused-function -Wno-deprecated-copy
30
- IMAGE: noetic-source
31
NAME: asan
32
- DOCKER_RUN_OPTS: "-e PRELOAD=libasan.so.5"
+ DOCKER_RUN_OPTS: >-
33
+ -e PRELOAD=libasan.so.5
34
+ -e LSAN_OPTIONS="suppressions=$PWD/.github/workflows/lsan.suppressions"
35
TARGET_CMAKE_ARGS: -DCMAKE_CXX_FLAGS="-fsanitize=address -fno-omit-frame-pointer -O1"
36
+
37
env:
38
CATKIN_LINT: true
39
UNDERLAY: /root/ws_moveit/install
.github/workflows/lsan.suppressions
@@ -0,0 +1 @@
1
+leak:class_loader
0 commit comments