.gitignore 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  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. python/ray/_raylet.pyd
  52. # Incremental linking files
  53. *.ilk
  54. # Library export files
  55. *.exp
  56. # Debug symbols
  57. *.pdb
  58. # Fortran module files
  59. *.mod
  60. !deploy/ray-operator/go.mod
  61. # Compiled Static libraries
  62. *.lai
  63. *.la
  64. *.a
  65. *.lib
  66. # Executables
  67. *.exe
  68. *.out
  69. *.app
  70. # Visual Studio files
  71. /packages
  72. *.suo
  73. *.user
  74. *.VC.db
  75. *.VC.opendb
  76. # Protobuf-generated files
  77. *_pb2.py
  78. *.pb.h
  79. *.pb.cc
  80. # Ray cluster configuration
  81. scripts/nodes.txt
  82. # OS X folder attributes
  83. .DS_Store
  84. # Debug files
  85. *.dSYM/
  86. *.su
  87. # Python setup files
  88. *.egg-info
  89. # Compressed files
  90. *.gz
  91. # Datasets from examples
  92. **/MNIST_data/
  93. **/cifar-10-batches-bin/
  94. # Generated documentation files
  95. /doc/_build
  96. /doc/source/_static/thumbs
  97. /doc/source/tune/generated_guides/
  98. # User-specific stuff:
  99. .idea/**/workspace.xml
  100. .idea/**/tasks.xml
  101. .idea/dictionaries
  102. .llvm-local.bazelrc
  103. # Sensitive or high-churn files:
  104. .idea/**/dataSources/
  105. .idea/**/dataSources.ids
  106. .idea/**/dataSources.xml
  107. .idea/**/dataSources.local.xml
  108. .idea/**/sqlDataSources.xml
  109. .idea/**/dynamic.xml
  110. .idea/**/uiDesigner.xml
  111. # Gradle:
  112. .idea/**/gradle.xml
  113. .idea/**/libraries
  114. .idea
  115. # Website
  116. /site/Gemfile.lock
  117. /site/.sass-cache
  118. /site/_site
  119. # Pytest Cache
  120. **/.pytest_cache
  121. **/.cache
  122. .benchmarks
  123. python-driver-*
  124. # Vscode
  125. .vscode/
  126. *.iml
  127. # Java
  128. java/**/target
  129. java/**/lib
  130. java/**/.settings
  131. java/**/.classpath
  132. java/**/.project
  133. java/runtime/native_dependencies/
  134. dependency-reduced-pom.xml
  135. # Cpp
  136. cpp/example/thirdparty/
  137. .clwb
  138. # pom.xml files generated from pom_template.xml
  139. java/**/pom.xml
  140. # python virtual env
  141. venv
  142. # pyenv version file
  143. .python-version
  144. # Vim
  145. .*.swp
  146. *.swp
  147. tags
  148. tags.lock
  149. tags.temp
  150. # Emacs
  151. .#*
  152. # tools
  153. tools/prometheus*
  154. # ray project files
  155. project-id
  156. .mypy_cache/
  157. # gitpod cache related
  158. .pip-cache/
  159. .bazel-cache/
  160. # release test related
  161. .anyscale.yaml
  162. test_state.json
  163. # workflow storage
  164. workflow_data/
  165. # vscode java extention generated
  166. .factorypath