-
Notifications
You must be signed in to change notification settings - Fork 7.1k
[core] Enable cgroup unit tests in CI #51864
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
Changes from 5 commits
c5983c2
901ac0e
d7c1c86
5da4461
5904e6f
932bcb9
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -293,34 +293,41 @@ steps: | |
| - "3.13" | ||
|
|
||
| # cpp tests | ||
| - label: ":ray: core: cgroup tests" | ||
| tags: core_cpp | ||
| instance_type: medium | ||
| commands: | ||
| - bazel run //ci/ray_ci:test_in_docker -- //:all //src/... core --only-tags=cgroup --build-type cgroup | ||
| --privileged --cache-test-results --parallelism-per-worker 2 | ||
|
|
||
| - label: ":ray: core: cpp tests" | ||
| tags: core_cpp | ||
| instance_type: medium | ||
| commands: | ||
| - bazel run //ci/ray_ci:test_in_docker -- //:all //src/... core --build-type clang | ||
| - bazel run //ci/ray_ci:test_in_docker -- //:all //src/... core --except-tags=cgroup --build-type clang | ||
| --cache-test-results --parallelism-per-worker 2 | ||
|
|
||
| - label: ":ray: core: cpp asan tests" | ||
| tags: core_cpp | ||
| instance_type: medium | ||
| commands: | ||
| - bazel run //ci/ray_ci:test_in_docker -- //:all //src/... core --build-type asan-clang | ||
| --cache-test-results --parallelism-per-worker 2 | ||
| - bazel run //ci/ray_ci:test_in_docker -- //:all //src/... core --except-tags=cgroup | ||
| --build-type asan-clang --cache-test-results --parallelism-per-worker 2 | ||
|
|
||
| - label: ":ray: core: cpp ubsan tests" | ||
| tags: core_cpp | ||
| instance_type: large | ||
| commands: | ||
| - bazel run //ci/ray_ci:test_in_docker -- //:all //src/... core --build-type ubsan | ||
| --except-tags no_ubsan | ||
| - bazel run //ci/ray_ci:test_in_docker -- //:all //src/... core | ||
| --build-type ubsan --except-tags no_ubsan,cgroup | ||
| --cache-test-results --parallelism-per-worker 2 | ||
|
|
||
| - label: ":ray: core: cpp tsan tests" | ||
| tags: core_cpp | ||
| instance_type: medium | ||
| commands: | ||
| - bazel run //ci/ray_ci:test_in_docker -- //:all //src/... core --build-type tsan-clang | ||
| --except-tags no_tsan | ||
| - bazel run //ci/ray_ci:test_in_docker -- //:all //src/... core | ||
| --build-type tsan-clang --except-tags no_tsan,cgroup | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. so where is the
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I want to make sure I understand correctly, here I add |
||
| --cache-test-results --parallelism-per-worker 2 | ||
|
|
||
| - label: ":ray: core: flaky cpp tests" | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.