-
Notifications
You must be signed in to change notification settings - Fork 435
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
CI: Enable ASAN testing #9537
CI: Enable ASAN testing #9537
Conversation
/azp run |
Azure Pipelines successfully started running 4 pipeline(s). |
/azp run |
Azure Pipelines successfully started running 4 pipeline(s). |
adc3370
to
70ffe65
Compare
/azp run |
Azure Pipelines successfully started running 4 pipeline(s). |
/azp run |
Azure Pipelines successfully started running 4 pipeline(s). |
buildlib/pr/main.yml
Outdated
@@ -170,7 +170,7 @@ resources: | |||
options: $(DOCKER_OPT_ARGS) $(DOCKER_OPT_VOLUMES) | |||
- container: ubuntu22_cuda12 | |||
image: rdmz-harbor.rdmz.labs.mlnx/ucx/x86_64/ubuntu22.04-mofed5-cuda12:3 | |||
options: $(DOCKER_OPT_ARGS) $(DOCKER_OPT_VOLUMES) $(DOCKER_OPT_GPU) | |||
options: $(DOCKER_OPT_ARGS) --net=host $(DOCKER_OPT_VOLUMES) $(DOCKER_OPT_GPU) |
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.
AFAIK out dockers should already run with "--net host" by using a wrapper script
Right, @Alexey-Rivkin @artemry-nv ?
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.
We have 2 Docker containers with the "host" network mode:
centos7_ib
centos7_cuda11
https://github.com/openucx/ucx/blob/master/buildlib/pr/main.yml#L12-L17
Others default to the "bridge" network mode.
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.
@Alexey-Rivkin thanks. Basically, all dockers that run gtest should be with "--net host". I guess most dockers are build only.
Can we add "--net host" to DOCKER_OPT_IB?
582c42b
to
6756bb8
Compare
/azp run |
Azure Pipelines successfully started running 4 pipeline(s). |
contrib/test_jenkins.sh
Outdated
# build for devel tests and gtest | ||
build devel --enable-gtest --enable-asan --without-valgrind | ||
|
||
# all are running gtest |
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.
minor: comments are not really informative here (copy-past)? I'd remove
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.
Done.
2832b28
to
f3441f4
Compare
What
Add Address Sanitizer check job to CI