You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

167 lines
7.5 KiB

7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
  1. # Contributing
  2. Thank you for considering making contributions to Tendermint and related repositories! Start by taking a look at the [coding repo](https://github.com/tendermint/coding) for overall information on repository workflow and standards.
  3. Please follow standard github best practices: fork the repo, branch from the tip of develop, make some commits, and submit a pull request to develop. See the [open issues](https://github.com/tendermint/tendermint/issues) for things we need help with!
  4. Before making a pull request, please open an issue describing the
  5. change you would like to make. If an issue for your change already exists,
  6. please comment on it that you will submit a pull request. Be sure to reference the issue in the opening
  7. comment of your pull request. If your change is substantial, you will be asked
  8. to write a more detailed design document in the form of an
  9. Architectural Decision Record (ie. see [here](./docs/architecture/)) before submitting code
  10. changes.
  11. Please make sure to use `gofmt` before every commit - the easiest way to do this is have your editor run it for you upon saving a file.
  12. ## Forking
  13. Please note that Go requires code to live under absolute paths, which complicates forking.
  14. While my fork lives at `https://github.com/ebuchman/tendermint`,
  15. the code should never exist at `$GOPATH/src/github.com/ebuchman/tendermint`.
  16. Instead, we use `git remote` to add the fork as a new remote for the original repo,
  17. `$GOPATH/src/github.com/tendermint/tendermint `, and do all the work there.
  18. For instance, to create a fork and work on a branch of it, I would:
  19. * Create the fork on github, using the fork button.
  20. * Go to the original repo checked out locally (i.e. `$GOPATH/src/github.com/tendermint/tendermint`)
  21. * `git remote rename origin upstream`
  22. * `git remote add origin git@github.com:ebuchman/basecoin.git`
  23. Now `origin` refers to my fork and `upstream` refers to the tendermint version.
  24. So I can `git push -u origin master` to update my fork, and make pull requests to tendermint from there.
  25. Of course, replace `ebuchman` with your git handle.
  26. To pull in updates from the origin repo, run
  27. * `git fetch upstream`
  28. * `git rebase upstream/master` (or whatever branch you want)
  29. Please don't make Pull Requests to `master`.
  30. ## Dependencies
  31. We use [dep](https://github.com/golang/dep) to manage dependencies.
  32. That said, the master branch of every Tendermint repository should just build
  33. with `go get`, which means they should be kept up-to-date with their
  34. dependencies so we can get away with telling people they can just `go get` our
  35. software.
  36. Since some dependencies are not under our control, a third party may break our
  37. build, in which case we can fall back on `dep ensure` (or `make
  38. get_vendor_deps`). Even for dependencies under our control, dep helps us to
  39. keep multiple repos in sync as they evolve. Anything with an executable, such
  40. as apps, tools, and the core, should use dep.
  41. Run `dep status` to get a list of vendor dependencies that may not be
  42. up-to-date.
  43. When updating dependencies, please only update the particular dependencies you
  44. need. Instead of running `dep ensure -update`, which will update anything,
  45. specify exactly the dependency you want to update, eg.
  46. `dep ensure -update github.com/tendermint/go-amino`.
  47. ## Vagrant
  48. If you are a [Vagrant](https://www.vagrantup.com/) user, you can get started
  49. hacking Tendermint with the commands below.
  50. NOTE: In case you installed Vagrant in 2017, you might need to run
  51. `vagrant box update` to upgrade to the latest `ubuntu/xenial64`.
  52. ```
  53. vagrant up
  54. vagrant ssh
  55. make test
  56. ```
  57. ## Changelog
  58. Every fix, improvement, feature, or breaking change should be made in a
  59. pull-request that includes an update to the `CHANGELOG_PENDING.md` file.
  60. Changelog entries should be formatted as follows:
  61. ```
  62. - [module] \#xxx Some description about the change (@contributor)
  63. ```
  64. Here, `module` is the part of the code that changed (typically a
  65. top-level Go package), `xxx` is the pull-request number, and `contributor`
  66. is the author/s of the change.
  67. It's also acceptable for `xxx` to refer to the relevent issue number, but pull-request
  68. numbers are preferred.
  69. Note this means pull-requests should be opened first so the changelog can then
  70. be updated with the pull-request's number.
  71. There is no need to include the full link, as this will be added
  72. automatically during release. But please include the backslash and pound, eg. `\#2313`.
  73. Changelog entries should be ordered alphabetically according to the
  74. `module`, and numerically according to the pull-request number.
  75. Changes with multiple classifications should be doubly included (eg. a bug fix
  76. that is also a breaking change should be recorded under both).
  77. Breaking changes are further subdivided according to the APIs/users they impact.
  78. Any change that effects multiple APIs/users should be recorded multiply - for
  79. instance, a change to the `Blockchain Protocol` that removes a field from the
  80. header should also be recorded under `CLI/RPC/Config` since the field will be
  81. removed from the header in rpc responses as well.
  82. ## Branching Model and Release
  83. We follow a variant of [git flow](http://nvie.com/posts/a-successful-git-branching-model/).
  84. This means that all pull-requests should be made against develop. Any merge to
  85. master constitutes a tagged release.
  86. Note all pull requests should be squash merged except for merging to master and
  87. merging master back to develop. This keeps the commit history clean and makes it
  88. easy to reference the pull request where a change was introduced.
  89. ### Development Procedure:
  90. - the latest state of development is on `develop`
  91. - `develop` must never fail `make test`
  92. - never --force onto `develop` (except when reverting a broken commit, which should seldom happen)
  93. - create a development branch either on github.com/tendermint/tendermint, or your fork (using `git remote add origin`)
  94. - make changes and update the `CHANGELOG_PENDING.md` to record your change
  95. - before submitting a pull request, run `git rebase` on top of the latest `develop`
  96. ### Pull Merge Procedure:
  97. - ensure pull branch is based on a recent develop
  98. - run `make test` to ensure that all tests pass
  99. - squash merge pull request
  100. - the `unstable` branch may be used to aggregate pull merges before fixing tests
  101. ### Release Procedure:
  102. - start on `develop`
  103. - run integration tests (see `test_integrations` in Makefile)
  104. - prepare release in a pull request against develop (to be squash merged):
  105. - copy `CHANGELOG_PENDING.md` to top of `CHANGELOG.md`
  106. - run `python ./scripts/linkify_changelog.py CHANGELOG.md` to add links for
  107. all issues
  108. - run `bash ./scripts/authors.sh` to get a list of authors since the latest
  109. release, and add the github aliases of external contributors to the top of
  110. the changelog. To lookup an alias from an email, try `bash
  111. ./scripts/authors.sh <email>`
  112. - reset the `CHANGELOG_PENDING.md`
  113. - bump versions
  114. - push latest develop with prepared release details to release/vX.X.X to run the extended integration tests on the CI
  115. - if necessary, make pull requests against release/vX.X.X and squash merge them
  116. - merge to master (don't squash merge!)
  117. - merge master back to develop (don't squash merge!)
  118. ### Hotfix Procedure:
  119. - follow the normal development and release procedure without any differences
  120. ## Testing
  121. All repos should be hooked up to [CircleCI](https://circleci.com/).
  122. If they have `.go` files in the root directory, they will be automatically
  123. tested by circle using `go test -v -race ./...`. If not, they will need a
  124. `circle.yml`. Ideally, every repo has a `Makefile` that defines `make test` and
  125. includes its continuous integration status using a badge in the `README.md`.