mirror of
https://github.com/vale981/ray
synced 2025-03-06 02:21:39 -05:00

OSS release tests currently run with hardcoded Python 3.7 base. In the future we will want to run tests on different python versions. This PR adds support for a new `python` field in the test configuration. The python field will determine both the base image used in the Buildkite runner docker container (for Ray client compatibility) and the base image for the Anyscale cluster environments. Note that in Buildkite, we will still only wait for the python 3.7 base image before kicking off tests. That is acceptable, as we can assume that most wheels finish in a similar time, so even if we wait for the 3.7 image and kick off a 3.8 test, that runner will wait maybe for 5-10 more minutes.
162 lines
4.3 KiB
Python
162 lines
4.3 KiB
Python
import copy
|
|
import datetime
|
|
import os
|
|
import re
|
|
from typing import Optional, Dict
|
|
|
|
import jinja2
|
|
import yaml
|
|
|
|
from ray_release.config import (
|
|
Test,
|
|
RELEASE_PACKAGE_DIR,
|
|
parse_python_version,
|
|
DEFAULT_PYTHON_VERSION,
|
|
get_test_cloud_id,
|
|
)
|
|
from ray_release.exception import ReleaseTestConfigError
|
|
from ray_release.util import python_version_str
|
|
|
|
|
|
DEFAULT_ENV = {
|
|
"DATESTAMP": str(datetime.datetime.now().strftime("%Y%m%d")),
|
|
"TIMESTAMP": str(int(datetime.datetime.now().timestamp())),
|
|
"EXPIRATION_1D": str(
|
|
(datetime.datetime.now() + datetime.timedelta(days=1)).strftime("%Y-%m-%d")
|
|
),
|
|
"EXPIRATION_2D": str(
|
|
(datetime.datetime.now() + datetime.timedelta(days=2)).strftime("%Y-%m-%d")
|
|
),
|
|
"EXPIRATION_3D": str(
|
|
(datetime.datetime.now() + datetime.timedelta(days=3)).strftime("%Y-%m-%d")
|
|
),
|
|
}
|
|
|
|
|
|
class TestEnvironment(dict):
|
|
pass
|
|
|
|
|
|
_test_env = None
|
|
|
|
|
|
def get_test_environment():
|
|
global _test_env
|
|
if _test_env:
|
|
return _test_env
|
|
|
|
_test_env = TestEnvironment(**DEFAULT_ENV)
|
|
return _test_env
|
|
|
|
|
|
def set_test_env_var(key: str, value: str):
|
|
test_env = get_test_environment()
|
|
test_env[key] = value
|
|
|
|
|
|
def get_test_env_var(key: str, default: Optional[str] = None):
|
|
test_env = get_test_environment()
|
|
return test_env.get(key, default)
|
|
|
|
|
|
def get_wheels_sanity_check(commit: Optional[str] = None):
|
|
if not commit:
|
|
cmd = (
|
|
"python -c 'import ray; print("
|
|
'"No commit sanity check available, but this is the '
|
|
"Ray wheel commit:\", ray.__commit__)'"
|
|
)
|
|
else:
|
|
cmd = (
|
|
f"python -c 'import ray; "
|
|
f'assert ray.__commit__ == "{commit}", ray.__commit__\''
|
|
)
|
|
return cmd
|
|
|
|
|
|
def load_and_render_yaml_template(
|
|
template_path: str, env: Optional[Dict] = None
|
|
) -> Optional[Dict]:
|
|
if not template_path:
|
|
return None
|
|
|
|
if not os.path.exists(template_path):
|
|
raise ReleaseTestConfigError(
|
|
f"Cannot load yaml template from {template_path}: Path not found."
|
|
)
|
|
|
|
with open(template_path, "rt") as f:
|
|
content = f.read()
|
|
|
|
return render_yaml_template(template=content, env=env)
|
|
|
|
|
|
def render_yaml_template(template: str, env: Optional[Dict] = None):
|
|
render_env = copy.deepcopy(os.environ)
|
|
if env:
|
|
render_env.update(env)
|
|
|
|
try:
|
|
content = jinja2.Template(template).render(env=render_env)
|
|
return yaml.safe_load(content)
|
|
except Exception as e:
|
|
raise ReleaseTestConfigError(
|
|
f"Error rendering/loading yaml template: {e}"
|
|
) from e
|
|
|
|
|
|
def load_test_cluster_env(test: Test, ray_wheels_url: str) -> Optional[Dict]:
|
|
cluster_env_file = test["cluster"]["cluster_env"]
|
|
cluster_env_path = os.path.join(
|
|
RELEASE_PACKAGE_DIR, test.get("working_dir", ""), cluster_env_file
|
|
)
|
|
|
|
env = populate_cluster_env_variables(test, ray_wheels_url=ray_wheels_url)
|
|
|
|
return load_and_render_yaml_template(cluster_env_path, env=env)
|
|
|
|
|
|
def populate_cluster_env_variables(test: Test, ray_wheels_url: str) -> Dict:
|
|
env = get_test_environment()
|
|
|
|
commit = env.get("RAY_COMMIT", None)
|
|
|
|
if not commit:
|
|
match = re.search(r"/([a-f0-9]{40})/", ray_wheels_url)
|
|
if match:
|
|
commit = match.group(1)
|
|
|
|
env["RAY_WHEELS_SANITY_CHECK"] = get_wheels_sanity_check(commit)
|
|
env["RAY_WHEELS"] = ray_wheels_url
|
|
|
|
if "python" in test:
|
|
python_version = parse_python_version(test["python"])
|
|
else:
|
|
python_version = DEFAULT_PYTHON_VERSION
|
|
|
|
env[
|
|
"RAY_IMAGE_NIGHTLY_CPU"
|
|
] = f"anyscale/ray:nightly-py{python_version_str(python_version)}"
|
|
env[
|
|
"RAY_IMAGE_ML_NIGHTLY_GPU"
|
|
] = f"anyscale/ray-ml:nightly-py{python_version_str(python_version)}-gpu"
|
|
|
|
return env
|
|
|
|
|
|
def load_test_cluster_compute(test: Test) -> Optional[Dict]:
|
|
cluster_compute_file = test["cluster"]["cluster_compute"]
|
|
cluster_compute_path = os.path.join(
|
|
RELEASE_PACKAGE_DIR, test.get("working_dir", ""), cluster_compute_file
|
|
)
|
|
env = populate_cluster_compute_variables(test)
|
|
|
|
return load_and_render_yaml_template(cluster_compute_path, env=env)
|
|
|
|
|
|
def populate_cluster_compute_variables(test: Test) -> Dict:
|
|
env = get_test_environment()
|
|
|
|
cloud_id = get_test_cloud_id(test)
|
|
env["ANYSCALE_CLOUD_ID"] = cloud_id
|
|
return env
|