forked from ray-project/ray
-
Notifications
You must be signed in to change notification settings - Fork 0
gitpod #4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
gitpod #4
Changes from all commits
Commits
Show all changes
33 commits
Select commit
Hold shift + click to select a range
fa27cad
init
fishbone a88dd3b
fix
fishbone 95df991
fix
fishbone 6794e9c
fix
fishbone 8479541
Test
fishbone db478e3
prebuild
fishbone ffd06c0
prebuild
fishbone 88777c7
cache link
fishbone c7bcc8c
up
fishbone 0d303f7
fix
fishbone 1ef819f
fix
fishbone a786c93
git`
fishbone 515fbc2
fix
fishbone 5f8d6b3
fix
fishbone b2a0a50
fix
fishbone 1e1ff2e
Update .bazelrc
fishbone c77e659
fix
fishbone 7576f7b
fix
fishbone b4250ad
fix
fishbone 68c2e64
fix
fishbone be39bde
fix
fishbone eda737b
fix
fishbone f284e48
fix
fishbone c8e51d7
fix
fishbone 8da8929
fix
fishbone 2864e7b
fix
fishbone 5cd52a1
fix
fishbone 40ab233
fix
fishbone 6b0474d
up
fishbone 7b41224
fix
fishbone 5de74d1
fix
fishbone af97d9f
fix
fishbone ec15a7d
fix
fishbone File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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,16 @@ | ||
| image: | ||
| file: .gitpod/Dockerfile | ||
| tasks: | ||
| - before: export PIP_CACHE_DIR=/workspace/ray/.pip-cache | ||
| prebuild: cd dashboard/client && npm install && npm run build && cd - && bazel build //:ray_pkg && cd python && pip install -e . && cd ../ | ||
| github: | ||
| prebuilds: | ||
| master: true | ||
| branches: true | ||
| pullRequests: true | ||
| pullRequestsFromForks: true | ||
| # Let's keep them turn off for now | ||
| addCheck: false | ||
| addComment: false | ||
| addBadge: false | ||
| addLabel: false |
This file contains hidden or 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:20.10 | ||
| ENV SHELL=/bin/bash | ||
| ENV TERM=xterm-256color | ||
| ENV LANG=C.UTF-8 | ||
| ENV LC_TERMINAL=iTerm2 | ||
| ENV LC_TERMINAL_VERSION=3.4.4 | ||
| ENV SKIP_THIRDPARTY_INSTALL=1 | ||
| ARG DEBIAN_FRONTEND=noninteractive | ||
| RUN set -x; apt update \ | ||
| && ln -fs /usr/share/zoneinfo/America/Los_Angeles /etc/localtime \ | ||
| && apt install emacs gdb wget npm git build-essential curl unzip zip psmisc curl gnupg python3 pip iptables ycmd -y \ | ||
| && dpkg-reconfigure --frontend noninteractive tzdata \ | ||
| && apt install default-jre default-jdk clang rtags tmux clang-format shellcheck cmake autogen python-dev automake autoconf libtool -y \ | ||
| && curl -fsSL https://bazel.build/bazel-release.pub.gpg | gpg --dearmor > bazel.gpg \ | ||
| && mv bazel.gpg /etc/apt/trusted.gpg.d/ \ | ||
| && echo "deb [arch=amd64] https://storage.googleapis.com/bazel-apt stable jdk1.8" | tee /etc/apt/sources.list.d/bazel.list \ | ||
| && apt update && apt install bazel-3.7.2 -y \ | ||
| && pip3 install cython==0.29.0 pytest pandas tree tabulate pexpect sklearn joblib yapf==0.23.0 flake8==3.7.7 mypy==0.782 flake8-quotes setproctitle==1.1.10 psutil \ | ||
| && python3 -c 'print("startup --output_base=/workspace/ray/.bazel-cache\nbuild --host_jvm_args=-Xmx1800m\nbuild --jobs=6")' > /etc/bazel.bazelrc | ||
|
|
||
| RUN update-alternatives --install /usr/local/bin/python python /usr/bin/python3 30 \ | ||
| && update-alternatives --install /usr/bin/bazel bazel /usr/bin/bazel-3.7.2 30 \ | ||
| && echo "kernel.yama.ptrace_scope = 0" > /etc/sysctl.d/10-ptrace.conf |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or 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 hidden or 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,3 @@ | ||
| startup --output_base=/workspace/ray/.bazel-cache | ||
| build --host_jvm_args=-Xmx1800m | ||
| build --jobs=6 |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please remove these