mirror of
https://github.com/vale981/ray
synced 2025-03-05 10:01:43 -05:00

This is needed since we are stress-testing the State APIs in release test, and we will need to have a larger max limit than the system default max limit, otherwise, the APIs would return error.
16 lines
557 B
YAML
16 lines
557 B
YAML
base_image: {{ env["RAY_IMAGE_NIGHTLY_CPU"] | default("anyscale/ray:nightly-py37") }}
|
|
debian_packages: []
|
|
env_vars: {"RAY_MAX_LIMIT_FROM_API_SERVER": "1000000000", "RAY_MAX_LIMIT_FROM_DATA_SOURCE":"1000000000"}
|
|
|
|
python:
|
|
pip_packages:
|
|
- terminado
|
|
- boto3
|
|
- cython==0.29.26
|
|
conda_packages: []
|
|
|
|
post_build_cmds:
|
|
- pip3 uninstall -y ray && pip3 install -U {{ env["RAY_WHEELS"] | default("ray") }}
|
|
- pip3 install ray[default]
|
|
- echo {{env["DATESTAMP"]}}
|
|
- {{ env["RAY_WHEELS_SANITY_CHECK"] | default("echo No Ray wheels sanity check") }}
|