.gitpod.yml 478 B

12345678910111213141516
  1. image:
  2. file: .gitpod/Dockerfile
  3. tasks:
  4. - before: export PIP_CACHE_DIR=/workspace/ray/.pip-cache
  5. prebuild: cd dashboard/client && npm install && npm run build && cd - && bazel build //:ray_pkg && cd python && pip install -e . && cd ../
  6. github:
  7. prebuilds:
  8. master: true
  9. branches: true
  10. pullRequests: true
  11. pullRequestsFromForks: true
  12. # Let's keep them turn off for now
  13. addCheck: false
  14. addComment: false
  15. addBadge: false
  16. addLabel: false