mirror of
https://github.com/vale981/ray
synced 2025-03-04 17:41:43 -05:00
[Release] Use nightly base images for release tests (#25373)
Revert back to using nightly base images instead of pinning to 1.12.1. Pinning the docker image had led to uncaught errors in the past. Instead, we should be using nightly to make sure release tests will work on the most up to date versions of docker/cluster envs. If there are any test failures, the underlying issues should be fixed rather than pinning the docker image. Co-authored-by: Kai Fricke <kai@anyscale.com>
This commit is contained in:
parent
ccabba88ae
commit
6f683c8d1c
2 changed files with 3 additions and 3 deletions
|
@ -87,7 +87,7 @@ def get_step(
|
|||
|
||||
step["plugins"][0]["docker#v3.9.0"][
|
||||
"image"
|
||||
] = f"rayproject/ray:latest-py{python_version_str(python_version)}"
|
||||
] = f"rayproject/ray:nightly-py{python_version_str(python_version)}"
|
||||
|
||||
commit = get_test_env_var("RAY_COMMIT")
|
||||
branch = get_test_env_var("RAY_BRANCH")
|
||||
|
|
|
@ -136,10 +136,10 @@ def populate_cluster_env_variables(test: Test, ray_wheels_url: str) -> Dict:
|
|||
|
||||
env[
|
||||
"RAY_IMAGE_NIGHTLY_CPU"
|
||||
] = f"anyscale/ray:1.12.1-py{python_version_str(python_version)}"
|
||||
] = f"anyscale/ray:nightly-py{python_version_str(python_version)}"
|
||||
env[
|
||||
"RAY_IMAGE_ML_NIGHTLY_GPU"
|
||||
] = f"anyscale/ray-ml:1.12.1-py{python_version_str(python_version)}-gpu"
|
||||
] = f"anyscale/ray-ml:nightly-py{python_version_str(python_version)}-gpu"
|
||||
|
||||
return env
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue