mirror of
https://github.com/vale981/ray
synced 2025-03-10 13:26:39 -04:00
36 lines
1 KiB
YAML
36 lines
1 KiB
YAML
# This file is generated by `ray project create`.
|
|
|
|
name: sanity-check
|
|
|
|
# description: A short description of the project.
|
|
# The URL of the repo this project is part of.
|
|
# repo: ...
|
|
|
|
cluster:
|
|
config: ray-project/cluster.yaml
|
|
|
|
commands:
|
|
- name: sanity-check
|
|
help: "Do release sanity check with pip"
|
|
command: |
|
|
export RAY_VERSION={{ray_version}}
|
|
export RAY_HASH={{commit}}
|
|
chmod +x ./pip_download_test.sh
|
|
./pip_download_test.sh
|
|
params:
|
|
- name: ray_version # Ray version string.
|
|
default: "1.1.0.dev0"
|
|
|
|
- name: commit # Ray commit SHA string.
|
|
default: "FILL ME IN"
|
|
|
|
# Pathnames for files and directories that should be saved
|
|
# in a snapshot but that should not be synced with a# session. Pathnames can be relative to the project
|
|
# directory or absolute. Generally, this should be files
|
|
# that were created by an active session, such as
|
|
# application checkpoints and logs.
|
|
output_files: [
|
|
# For example, uncomment this to save the logs from the
|
|
# last ray job.
|
|
# "/tmp/ray/session_latest",
|
|
]
|