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

* Delete LINT section of install-ray.sh since it appears unused * Delete install.sh since it appears unused * Delete run_test.sh since it appears unused * Put environment variables on separate lines in .travis.yml * Move --jobs 50 out of install-ray.sh * Delete upgrade-syn.sh since it appears unused * Move CI bazel flags to .bazelrc via --config * Make installations quieter * Get rid of verbose Maven messages * Install Bazel system-wide for CI so that there's no need to update PATH * Recognize Windows as valid platform Co-authored-by: Mehrdad <noreply@github.com>
27 lines
492 B
Bash
Executable file
27 lines
492 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# Cause the script to exit if a single command fails.
|
|
set -e
|
|
|
|
ROOT_DIR=$(cd "$(dirname "${BASH_SOURCE:-$0}")"; pwd)
|
|
|
|
echo "PYTHON is $PYTHON"
|
|
|
|
if [[ "$PYTHON" == "3.6" ]]; then
|
|
export PATH="$HOME/miniconda/bin:$PATH"
|
|
|
|
pushd "$ROOT_DIR/../../python"
|
|
pushd ray/dashboard/client
|
|
source $HOME/.nvm/nvm.sh
|
|
nvm use node
|
|
npm ci
|
|
npm run build
|
|
popd
|
|
pip install -e . --verbose
|
|
popd
|
|
|
|
else
|
|
echo "Unrecognized Python version."
|
|
exit 1
|
|
fi
|
|
|