README.rst 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. kazel - a BUILD file generator for go and bazel
  2. ===============================================
  3. Requirements:
  4. #############
  5. * Your project must be somewhat compatible with go tool because
  6. kazel uses go tool to parse your import tree.
  7. * You must have a **GOPATH** and **GOROOT** setup and your project must
  8. be in the correct location in your **GOPATH**.
  9. * Your ``./vendor`` directory may not contain ``BUILD`` files.
  10. Usage:
  11. ######
  12. 1. Get kazel by running ``go get k8s.io/repo-infra/kazel``.
  13. 2. Create a ``.kazelcfg.json`` in the root of the repository. For the
  14. kazel repository, the ``.kazelcfg.json`` would look like:
  15. .. code-block:: json
  16. {
  17. "GoPrefix": "k8s.io/repo-infra",
  18. "SrcDirs": [
  19. "./kazel"
  20. ],
  21. "SkippedPaths": [
  22. ".*foobar(baz)?.*$"
  23. ]
  24. }
  25. 3. Run kazel:
  26. .. code-block:: bash
  27. $ kazel -root=$GOPATH/src/k8s.io/repo-infra
  28. Defaults:
  29. #########
  30. * **SrcDirs** in ``.kazelcfg.json`` defaults to ``["./"]``
  31. * ``-root`` option defaults to the current working directory
  32. Automanagement:
  33. ###############
  34. kazel reconciles rules that have the "**automanaged**" tag. If
  35. you no longer want kazel to manage a rule, you can remove the
  36. **automanaged** tag and kazel will no longer manage that rule.
  37. kazel only manages srcs, deps, and library attributes of a
  38. rule after initial creation so you can add and managed other
  39. attributes like data and copts and kazel will respect your
  40. changes.
  41. kazel automatically formats all ``BUILD`` files in your repository
  42. except for those matching **SkippedPaths**.
  43. Adding "sources" rules:
  44. #######################
  45. If you set "**AddSourcesRules**": ``true`` in your ``.kazelcfg.json``,
  46. kazel will create "**package-srcs**" and "**all-srcs**" rules in every
  47. package.
  48. The "**package-srcs**" rule is a glob matching all files in the
  49. package recursively, but not any files owned by packages in
  50. subdirectories.
  51. The "**all-srcs**" rule includes both the "**package-srcs**" rule and
  52. the "**all-srcs**" rules of all subpackages; i.e. **//:all-srcs** will
  53. include all files in your repository.
  54. The "**package-srcs**" rule defaults to private visibility,
  55. since it is safer to depend on the "**all-srcs**" rule: if a
  56. subpackage is added, the "**package-srcs**" rule will no longer
  57. include those files.
  58. You can remove the "**automanaged**" tag from the "**package-srcs**"
  59. rule if you need to modify the glob (such as adding excludes).
  60. It's recommended that you leave the "**all-srcs**" rule
  61. automanaged.
  62. Validating BUILD files in CI:
  63. #############################
  64. If you run kazel with ``--validate``, it will not update any ``BUILD`` files, but it
  65. will exit nonzero if any ``BUILD`` files are out-of-date. You can add ``--print-diff``
  66. to print out the changes needed.