.gitignore 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  1. # The build output should clearly not be checked in
  2. *test-output.xml
  3. /bazel-*
  4. /python/ray/core
  5. /python/ray/pickle5_files/
  6. /python/ray/thirdparty_files/
  7. /python/ray/pyarrow_files/
  8. /python/ray/jars/
  9. /python/ray/cpp/
  10. /python/build
  11. /python/dist
  12. /python/python-driver-*
  13. /python/ray/serve/generated
  14. /thirdparty/pkg/
  15. /build/java
  16. .jar
  17. /dashboard/client/build
  18. # Files generated by flatc should be ignored
  19. /src/ray/gcs/format/*_generated.h
  20. /src/ray/object_manager/format/*_generated.h
  21. /src/ray/raylet/format/*_generated.h
  22. /java/runtime/src/main/java/io/ray/runtime/generated/*
  23. /java/serve/src/main/java/io/ray/serve/generated/*
  24. # Files genrated by c++ worker should be ignored.
  25. /cpp/example/thirdparty/
  26. /cpp/example/bazel-*
  27. /python/ray/cpp
  28. # Redis temporary files
  29. *dump.rdb
  30. # Python byte code files
  31. *.pyc
  32. python/.eggs
  33. # Backup files
  34. *.bak
  35. # Emacs temporary files
  36. *~
  37. *#
  38. # Compiled Object files
  39. *.slo
  40. *.lo
  41. *.o
  42. *.xo
  43. *.obj
  44. # Precompiled Headers
  45. *.gch
  46. *.pch
  47. # Compiled Dynamic libraries
  48. *.so
  49. *.dylib
  50. *.dll
  51. # Incremental linking files
  52. *.ilk
  53. # Library export files
  54. *.exp
  55. # Debug symbols
  56. *.pdb
  57. # Fortran module files
  58. *.mod
  59. !deploy/ray-operator/go.mod
  60. # Compiled Static libraries
  61. *.lai
  62. *.la
  63. *.a
  64. *.lib
  65. # Executables
  66. *.exe
  67. *.out
  68. *.app
  69. # Visual Studio files
  70. /packages
  71. *.suo
  72. *.user
  73. *.VC.db
  74. *.VC.opendb
  75. # Protobuf-generated files
  76. *_pb2.py
  77. *.pb.h
  78. *.pb.cc
  79. # Ray cluster configuration
  80. scripts/nodes.txt
  81. # OS X folder attributes
  82. .DS_Store
  83. # Debug files
  84. *.dSYM/
  85. *.su
  86. # Python setup files
  87. *.egg-info
  88. # Compressed files
  89. *.gz
  90. # Datasets from examples
  91. **/MNIST_data/
  92. **/cifar-10-batches-bin/
  93. # Generated documentation files
  94. /doc/_build
  95. /doc/source/_static/thumbs
  96. /doc/source/tune/generated_guides/
  97. # User-specific stuff:
  98. .idea/**/workspace.xml
  99. .idea/**/tasks.xml
  100. .idea/dictionaries
  101. .llvm-local.bazelrc
  102. # Sensitive or high-churn files:
  103. .idea/**/dataSources/
  104. .idea/**/dataSources.ids
  105. .idea/**/dataSources.xml
  106. .idea/**/dataSources.local.xml
  107. .idea/**/sqlDataSources.xml
  108. .idea/**/dynamic.xml
  109. .idea/**/uiDesigner.xml
  110. # Gradle:
  111. .idea/**/gradle.xml
  112. .idea/**/libraries
  113. .idea
  114. # Website
  115. /site/Gemfile.lock
  116. /site/.sass-cache
  117. /site/_site
  118. # Pytest Cache
  119. **/.pytest_cache
  120. **/.cache
  121. .benchmarks
  122. python-driver-*
  123. # Vscode
  124. .vscode/
  125. *.iml
  126. # Java
  127. java/**/target
  128. java/**/lib
  129. java/**/.settings
  130. java/**/.classpath
  131. java/**/.project
  132. java/runtime/native_dependencies/
  133. # Cpp
  134. cpp/example/thirdparty/
  135. # streaming/python
  136. streaming/python/generated/
  137. streaming/java/streaming-runtime/src/main/java/io/ray/streaming/runtime/generated/
  138. streaming/build/java
  139. .clwb
  140. streaming/**/.settings
  141. streaming/java/**/target
  142. streaming/java/**/.classpath
  143. streaming/java/**/.project
  144. streaming/java/**/*.log
  145. # pom.xml files generated from pom_template.xml
  146. java/**/pom.xml
  147. streaming/java/**/pom.xml
  148. # python virtual env
  149. venv
  150. # pyenv version file
  151. .python-version
  152. # Vim
  153. .*.swp
  154. *.swp
  155. tags
  156. tags.lock
  157. tags.temp
  158. # Emacs
  159. .#*
  160. # tools
  161. tools/prometheus*
  162. # ray project files
  163. project-id
  164. .mypy_cache/
  165. # gitpod cache related
  166. .pip-cache/
  167. .bazel-cache/
  168. # release test related
  169. .anyscale.yaml
  170. test_state.json
  171. # workflow storage
  172. workflow_data/
  173. # vscode java extention generated
  174. .factorypath