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

Clean up the ci/ directory. This means getting rid of the travis/ path completely and moving the files into sensible subdirectories. Details: - Moves everything under ci/travis into subdirectories, e.g. ci/build, ci/lint, etc. - Minor adjustments to some scripts (variable renames) - Removes the outdated (unused) asan tests
12 lines
377 B
Bash
Executable file
12 lines
377 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# Installs default dependencies ("ray[default]") on top of minimal install
|
|
|
|
# Get script's directory: https://stackoverflow.com/a/246128
|
|
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
|
|
|
|
# Installs minimal dependencies
|
|
"$SCRIPT_DIR"/install-minimal.sh
|
|
|
|
# Installs default dependencies
|
|
python -m pip install -U "ray[default]"
|