-
Notifications
You must be signed in to change notification settings - Fork 68
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Simple test to do clang/asan builds on gz-math #647
Conversation
Inspired by robotlocomotion/drake's approach Signed-off-by: Michael Carroll <[email protected]>
Signed-off-by: Michael Carroll <[email protected]>
build:clang --host_action_env=CC=clang-15 | ||
build:clang --host_action_env=CXX=clang++-15 | ||
|
||
### ASan build. Clang only. ### |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: consider adding that both --config asan --config clang
need to be passed to bazel
@@ -0,0 +1,5 @@ | |||
sh_binary( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: consider adding a docstring on how this can be run locally
bazel run --config asan --config clang tools:asan
?
whoops. @ahcorde I think I actually found a better way of doing this. I'm going to revert. |
This reverts commit 757ead0.
Inspired by robotlocomotion/drake's approach