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

* Fix SC2006: Use $(...) notation instead of legacy backticked `...`. * Fix SC2016: Expressions don't expand in single quotes, use double quotes for that. * Fix SC2046: Quote this to prevent word splitting. * Fix SC2053: Quote the right-hand side of == in [[ ]] to prevent glob matching. * Fix SC2068: Double quote array expansions to avoid re-splitting elements. * Fix SC2086: Double quote to prevent globbing and word splitting. * Fix SC2102: Ranges can only match single chars (mentioned due to duplicates). * Fix SC2140: Word is of the form "A"B"C" (B indicated). Did you mean "ABC" or "A\"B\"C"? * Fix SC2145: Argument mixes string and array. Use * or separate argument. * Fix SC2209: warning: Use var=$(command) to assign output (or quote to assign string). Co-authored-by: Mehrdad <noreply@github.com>
48 lines
1.9 KiB
Bash
Executable file
48 lines
1.9 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# This script build docker images for autoscaler.
|
|
# For now, we only build python3.6 images.
|
|
set -e
|
|
set -x
|
|
|
|
SCRIPT_DIR=$(cd "$(dirname "${BASH_SOURCE:-$0}")"; pwd)
|
|
ROOT_DIR=$(cd "$SCRIPT_DIR"/../../; pwd)
|
|
DOCKER_USERNAME="raytravisbot"
|
|
|
|
# We will only build and push when we are building branch build.
|
|
if [[ "$TRAVIS" == "true" && "$TRAVIS_PULL_REQUEST" == "false" ]]; then
|
|
echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin
|
|
|
|
wheel=$(cd $ROOT_DIR/.whl; ls | grep cp36m-manylinux)
|
|
commit_sha=$(echo "$TRAVIS_COMMIT" | head -c 6)
|
|
cp -r "$ROOT_DIR"/.whl "$ROOT_DIR"/docker/autoscaler/.whl
|
|
|
|
docker build -q -t rayproject/base-deps docker/base-deps
|
|
|
|
docker build \
|
|
--build-arg WHEEL_PATH=".whl/$wheel" \
|
|
--build-arg WHEEL_NAME=$wheel \
|
|
-t rayproject/autoscaler:"$commit_sha" \
|
|
"$ROOT_DIR"/docker/autoscaler
|
|
|
|
docker tag rayproject/base-deps rayproject/base-deps:"$commit_sha"
|
|
docker push rayproject/base-deps:"$commit_sha"
|
|
docker push rayproject/autoscaler:"$commit_sha"
|
|
|
|
|
|
# We have a branch build, e.g. release/v0.7.0
|
|
if [[ "$TRAVIS_BRANCH" != "master" ]]; then
|
|
# Replace / in branch name to - so it is legal tag name
|
|
normalized_branch_name=$(echo "$TRAVIS_BRANCH" | sed -e "s/\//-/")
|
|
docker tag rayproject/autoscaler:"$commit_sha" rayproject/autoscaler:"$normalized_branch_name"
|
|
docker tag rayproject/base-deps:"$commit_sha" rayproject/base-deps:"$normalized_branch_name"
|
|
docker push rayproject/autoscaler:"$normalized_branch_name"
|
|
docker push rayproject/base-deps:"$normalized_branch_name"
|
|
else
|
|
docker tag rayproject/autoscaler:"$commit_sha" rayproject/autoscaler:latest
|
|
docker tag rayproject/base-deps:"$commit_sha" rayproject/base-deps:latest
|
|
docker push rayproject/autoscaler:latest
|
|
docker push rayproject/base-deps:latest
|
|
fi
|
|
fi
|
|
|