[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:
Amog Kamsetty 2022-07-05 10:58:53 -07:00 committed by GitHub
parent ccabba88ae
commit 6f683c8d1c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View file

@ -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")

View file

@ -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