28 lines
587 B
YAML
28 lines
587 B
YAML
# This file is generated by `ray project create`.
|
|
|
|
name: commands-test
|
|
|
|
# description: A short description of the project.
|
|
repo: https://github.com/ray-project/not-exist
|
|
|
|
cluster:
|
|
config: ray-project/cluster.yaml
|
|
|
|
environment:
|
|
shell:
|
|
- echo "Setting up"
|
|
|
|
commands:
|
|
- name: first
|
|
command: echo "Starting ray job with {{a}} and {{b}}"
|
|
params:
|
|
- name: a
|
|
help: "This is the first parameter"
|
|
choices: ["1", "2"]
|
|
- name: b
|
|
help: "This is the second parameter"
|
|
choices: ["1", "2"]
|
|
|
|
- name: second
|
|
command: echo "Some command"
|