| 文件 | 最后提交记录 | 最后更新时间 |
|---|---|---|
[ci] sync versions of pytest and pip-tools (#54315) sync to the versions used in lock files Signed-off-by: Lonnie Liu <lonnie@anyscale.com> | 1 年前 | |
| 1 年前 | ||
[deps] Allow to call individual functions within install-dependencies (#54502) - This modifies the logic for the script to take in an argument and run that specific function instead of defaulting to calling install_dependencies all the time. - If there's no arg, install_dependencies get called by default --------- Signed-off-by: kevin <kevin@anyscale.com> Co-authored-by: Lonnie Liu <95255098+aslonnie@users.noreply.github.com> | 1 年前 | |
[fossa] add fossa analyze (#52524) runs on postmerge only Signed-off-by: Lonnie Liu <lonnie@anyscale.com> | 1 年前 | |
[Docs][KubeRay] Delete KubeRay doctests (#54080) <!-- Thank you for your contribution! Please review https://github.com/ray-project/ray/blob/master/CONTRIBUTING.rst before opening a pull request. --> <!-- Please add a reviewer to the assignee section when you create a PR. If you don't have the access to it, we will shortly find a reviewer and assign them to your PR. --> ## Why are these changes needed? <!-- Please give a short summary of the change and the problem this solves. --> As title ## Related issue number <!-- For example: "Closes #1234" --> Closes: ray-project/ray#54073 ## Checks - [x] I've signed off every commit(by using the -s flag, i.e., git commit -s) in this PR. - [x] I've run scripts/format.sh to lint the changes in this PR. - [x] I've included any doc changes needed for https://docs.ray.io/en/master/. - [ ] I've added any new APIs to the API Reference. For example, if I added a method in Tune, I've added it in doc/source/tune/api/ under the corresponding .rst file. - [x] I've made sure the tests are passing. Note that there might be a few flaky tests, see the recent failures at https://flakey-tests.ray.io/ - Testing Strategy - [ ] Unit tests - [ ] Release tests - [ ] This PR is not tested :( --------- Signed-off-by: Chi-Sheng Liu <chishengliu@chishengliu.com> | 1 年前 | |
添加 TaskEvent 周期清理功能 Co-authored-by: liuxh25<liuxianghai1@huawei.com> | 7 个月前 | |
[Docs][KubeRay] Delete KubeRay doctests (#54080) <!-- Thank you for your contribution! Please review https://github.com/ray-project/ray/blob/master/CONTRIBUTING.rst before opening a pull request. --> <!-- Please add a reviewer to the assignee section when you create a PR. If you don't have the access to it, we will shortly find a reviewer and assign them to your PR. --> ## Why are these changes needed? <!-- Please give a short summary of the change and the problem this solves. --> As title ## Related issue number <!-- For example: "Closes #1234" --> Closes: ray-project/ray#54073 ## Checks - [x] I've signed off every commit(by using the -s flag, i.e., git commit -s) in this PR. - [x] I've run scripts/format.sh to lint the changes in this PR. - [x] I've included any doc changes needed for https://docs.ray.io/en/master/. - [ ] I've added any new APIs to the API Reference. For example, if I added a method in Tune, I've added it in doc/source/tune/api/ under the corresponding .rst file. - [x] I've made sure the tests are passing. Note that there might be a few flaky tests, see the recent failures at https://flakey-tests.ray.io/ - Testing Strategy - [ ] Unit tests - [ ] Release tests - [ ] This PR is not tested :( --------- Signed-off-by: Chi-Sheng Liu <chishengliu@chishengliu.com> | 1 年前 | |
[release] veresion change to 2.48.0 (#54557) Signed-off-by: Lonnie Liu <lonnie@anyscale.com> | 1 年前 | |
raydepsets scaffolding (package management tool) (#54265) Scaffolding for raydepsets Bazel build file contains: - py_library: raydepsets_lib - py_binary: raydepsets (cli binary) - py_test: test_cli click CLI (no functionality) --------- Signed-off-by: elliot-barn <elliot.barnwell@anyscale.com> Co-authored-by: Lonnie Liu <95255098+aslonnie@users.noreply.github.com> | 1 年前 | |
| 1 年前 | ||
[civ2][flakiness/5] migrate ray dag tests to civ2 (#37796) Migrate small/medium/large and DAG tests to using civ2/runner Signed-off-by: can <can@anyscale.com> | 3 年前 | |
[ci] remove ci/keep_alive (#54079) no longer need to keep printing things to keep alive when running on buildkite --------- Signed-off-by: Lonnie Liu <lonnie@anyscale.com> Signed-off-by: Lonnie Liu <95255098+aslonnie@users.noreply.github.com> | 1 年前 | |
[ci] move conditional testing rules into a separate file (#50907) so that it is defined clearer Signed-off-by: Lonnie Liu <lonnie@anyscale.com> | 1 年前 | |
updating compile comment (#54058) updating compile comment Signed-off-by: elliot-barn <elliot.barnwell@anyscale.com> | 1 年前 | |
[CI] Enable end-of-file-fixer (#50050) Enable end-of-file-fixer pre-commit hook to makes sure files end in a newline and only a newline. --------- Signed-off-by: fscnick <fscnick.dev@gmail.com> | 1 年前 | |
Remove unnecessary string literal splits (#47360) I found there were a bunch. Found them with: bash find -name '*.py' -exec grep --color=always -HnIie '".*" ".*"' {} \; | less -r --------- Signed-off-by: Santiago Castro <santiagoc@netflix.com> Signed-off-by: Santiago Castro <bryant1410@gmail.com> | 1 年前 | |
Shellcheck rewrites (#9597) * Fix SC2001: See if you can use ${variable//search/replace} instead. * Fix SC2010: Don't use ls | grep. Use a glob or a for loop with a condition to allow non-alphanumeric filenames. * Fix SC2012: Use find instead of ls to better handle non-alphanumeric filenames. * Fix SC2015: Note that A && B || C is not if-then-else. C may run when A is true. * Fix SC2028: echo may not expand escape sequences. Use printf. * Fix SC2034: variable appears unused. Verify use (or export if used externally). * Fix SC2035: Use ./*glob* or -- *glob* so names with dashes won't become options. * Fix SC2071: > is for string comparisons. Use -gt instead. * Fix SC2154: variable is referenced but not assigned * Fix SC2164: Use 'cd ... || exit' or 'cd ... || return' in case cd fails. * Fix SC2188: This redirection doesn't have a command. Move to its command (or use 'true' as no-op). * Fix SC2236: Use -n instead of ! -z. * Fix SC2242: Can only exit with status 0-255. Other data should be written to stdout/stderr. * Fix SC2086: Double quote to prevent globbing and word splitting. Co-authored-by: Mehrdad <noreply@github.com> | 5 年前 | |
ray-llm container cu124 -> cu128 update (#53730) upgrade to use cuda128 base images for both LLM CI test, release tests, and also for building ray-llm images. --------- Signed-off-by: Seiji Eicher <seiji@anyscale.com> | 1 年前 |
| 文件 | 最后提交记录 | 最后更新时间 |
|---|---|---|
| 1 年前 | ||
| 1 年前 | ||
| 1 年前 | ||
| 1 年前 | ||
| 1 年前 | ||
| 7 个月前 | ||
| 1 年前 | ||
| 1 年前 | ||
| 1 年前 | ||
| 1 年前 | ||
| 3 年前 | ||
| 1 年前 | ||
| 1 年前 | ||
| 1 年前 | ||
| 1 年前 | ||
| 1 年前 | ||
| 5 年前 | ||
| 1 年前 |