forked from ray-project/ray
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
wip Use apt-get node Fix Add timing Run test in docker Fit pipeline.yml for terraform Fix Multiple tests Prettier diff
- Loading branch information
Showing
6 changed files
with
59 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
FROM ubuntu:focal | ||
|
||
ENV DEBIAN_FRONTEND=noninteractive | ||
ENV TZ=America/Los_Angeles | ||
ENV BUILDKITE=true | ||
ENV CI=true | ||
|
||
RUN apt-get update -qq | ||
RUN apt-get install -y -qq \ | ||
curl python-is-python3 git build-essential \ | ||
sudo unzip apt-utils dialog tzdata wget | ||
RUN locale -a | ||
|
||
RUN mkdir /bazel-cache; \ | ||
(echo "build --remote_cache=https://ray-bazel-remote.g1jl7rtfvrm4o.us-west-2.cs.amazonlightsail.com" >> /root/.bazelrc) | ||
|
||
RUN mkdir /ray | ||
WORKDIR /ray | ||
|
||
# Below should be re-run each time | ||
COPY . . | ||
RUN ./ci/travis/ci.sh init | ||
RUN ./ci/travis/ci.sh build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# TODO: doc | ||
- label: "Ray Core Tests" | ||
commands: | ||
- bash src/ray/test/run_object_manager_tests.sh | ||
- bazel test --config=ci $(./scripts/bazel_export_options) --build_tests_only -- //:all -rllib/... | ||
- label: "Ray Dashboard Tests" | ||
command: bazel test --config=ci $(./scripts/bazel_export_options) --build_tests_only python/ray/new_dashboard/... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters