2018-06-08 16:06:25 +02:00
|
|
|
|
# RIOT Maintainer Guidelines
|
|
|
|
|
|
2019-11-26 00:21:53 +01:00
|
|
|
|
This list presents a series of technical and non-technical guidelines for maintainers.
|
|
|
|
|
The list is not exhaustive, it represents a baseline on
|
2018-06-08 16:06:25 +02:00
|
|
|
|
things that should be ensured for contributions.
|
|
|
|
|
|
|
|
|
|
Notes:
|
2019-11-26 00:21:53 +01:00
|
|
|
|
- Any of the items in this list can be skipped, if clearly and logically
|
2018-06-08 16:06:25 +02:00
|
|
|
|
articulated reasons are presented.
|
|
|
|
|
- The order of the steps is meant to maximize efficiency and minimize
|
|
|
|
|
overhead, with the philosophy that failing in step n makes steps n+x
|
|
|
|
|
obsolete. However, this efficiency can depend on the quality of the
|
|
|
|
|
submission itself. If the PR (Pull Request) is clearly not in a reviewable
|
|
|
|
|
state (for example, due to poor code cleanliness or overall design), it
|
|
|
|
|
might be more efficient to give the contributor some broader comments for
|
|
|
|
|
improvement before further review.
|
2019-11-26 00:21:53 +01:00
|
|
|
|
- This is a working document: any changes, additions, or other discussions
|
2018-06-28 12:24:24 +02:00
|
|
|
|
are encouraged, via PRs raised against the document. Changes to this
|
2019-11-26 00:21:53 +01:00
|
|
|
|
document should have at least two ACKs, to ensure these guidelines
|
2018-06-28 12:24:24 +02:00
|
|
|
|
are well thought out, and that they reflect community consensus.
|
2018-06-08 16:06:25 +02:00
|
|
|
|
|
|
|
|
|
The [list of maintainers] gives information on the current maintainers and the
|
|
|
|
|
areas of RIOT they each maintain.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
## Technical guidelines
|
|
|
|
|
|
|
|
|
|
### 1. - Review the fundamentals
|
|
|
|
|
|
|
|
|
|
Before spending the time on an in-depth code review, it's important to assess
|
|
|
|
|
the overall validity of the PR.
|
|
|
|
|
|
|
|
|
|
1. Does the reasoning for this PR make sense? \
|
|
|
|
|
Are the requirements and design goals clearly thought out and clearly
|
|
|
|
|
expressed? \
|
|
|
|
|
Is the problem that the PR intends to solve clearly stated?
|
|
|
|
|
2. Is the solution presented in the PR as simple as possible to satisfy the
|
|
|
|
|
requirements, but no simpler?
|
2018-09-05 10:37:20 +02:00
|
|
|
|
3. Is the PR a manageable size? It should be confined to a single explainable
|
|
|
|
|
change, and be runnable on its own.
|
2018-06-28 10:53:59 +02:00
|
|
|
|
4. Is the solution well designed on a high level?
|
|
|
|
|
5. Do the concepts used by the PR make sense?
|
|
|
|
|
6. Does the PR break with existing concepts?
|
2018-07-06 12:06:21 +02:00
|
|
|
|
7. Is there a clean commit history in the pulled branch? The commit history
|
2018-09-05 10:37:20 +02:00
|
|
|
|
should group the code differences cleanly.
|
2018-06-28 10:53:59 +02:00
|
|
|
|
8. Are there clear and adequate instructions on how to test the PR? \
|
2018-06-08 16:06:25 +02:00
|
|
|
|
This may or may not include implemented tests as part of the PR.
|
2018-06-28 10:53:59 +02:00
|
|
|
|
9. Does the code compile and run?
|
|
|
|
|
10. Does this PR respect the rights of previous authors, either through
|
2018-06-08 16:06:25 +02:00
|
|
|
|
retaining their commits or by retaining their copyrights in the boilerplate
|
|
|
|
|
headers?
|
2018-06-28 10:53:59 +02:00
|
|
|
|
11. Is the PR a duplicate of another PR?
|
2018-06-08 16:06:25 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### 2. - Review the design of the code
|
|
|
|
|
|
2019-11-26 00:21:53 +01:00
|
|
|
|
The following list is not exhaustive, it addresses the coding issues we have
|
2018-06-08 16:06:25 +02:00
|
|
|
|
regularly seen in the past. In particular, check that the [Best Practices]
|
|
|
|
|
are followed. These checks can be aided (but not replaced) by a tool such as
|
|
|
|
|
Coccinelle, using the script found in dist/tools/coccinelle.
|
|
|
|
|
|
|
|
|
|
1. Check for code duplication
|
|
|
|
|
2. [Check memory usage][Comparing build sizes]
|
|
|
|
|
3. Check all code paths
|
|
|
|
|
4. Check for API compliance
|
|
|
|
|
5. Check for consistent error handling
|
|
|
|
|
6. Check scope of variables and functions
|
|
|
|
|
7. Check for syntactical, semantical or logical errors
|
|
|
|
|
8. Check for any runtime efficiency improvements that can be made in specific
|
|
|
|
|
lines of code - i.e., without changing the overall design of the code
|
|
|
|
|
9. Check that the code design is as simple as possible to solve the problem,
|
|
|
|
|
but no simpler
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### 3. - Test the PR
|
|
|
|
|
|
|
|
|
|
Run tests to verify the correct behavior (see 1.6), both on `native` and on a
|
|
|
|
|
few selected boards, or present clearly and logically articulated reasons for
|
|
|
|
|
skipping some/all tests.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### 4. - Review the code against the coding conventions
|
|
|
|
|
|
|
|
|
|
Check that the code follows the [Coding Conventions]. This can be aided (but not
|
|
|
|
|
replaced) by Uncrustify, using the uncrustify-riot.cfg file found in the base
|
2018-07-06 12:06:21 +02:00
|
|
|
|
directory. Note the difference between personal coding style, which is allowed
|
|
|
|
|
subject to the other guidelines, and the coding conventions, which are absolute
|
|
|
|
|
and must always be followed.
|
2018-06-08 16:06:25 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### 5. - Review the documentation
|
|
|
|
|
|
|
|
|
|
The aim of the documentation is to ensure that the code can be picked up as
|
|
|
|
|
easily as possible in the future. Ideally, the documentation is sufficiently
|
|
|
|
|
complete that no input from the original developer or maintainer is required.
|
|
|
|
|
|
|
|
|
|
1. Check for sufficient high-level (module-level) documentation
|
|
|
|
|
2. Verify function level documentation
|
|
|
|
|
3. Are critical/hard to understand parts in the code documented?
|
|
|
|
|
4. Check grammar and spelling of documentation
|
|
|
|
|
|
|
|
|
|
## Non-technical guidelines
|
|
|
|
|
|
|
|
|
|
### Interaction with contributors
|
|
|
|
|
|
|
|
|
|
- Be responsive. Even if you are too busy to review the contribution, try to
|
|
|
|
|
add a note fairly soon after the PR is submitted, thanking them for their
|
2018-07-06 12:06:21 +02:00
|
|
|
|
valuable contribution and saying that you will review it in due course. Once
|
2018-06-08 16:06:25 +02:00
|
|
|
|
the contributor has made their changes, ensure you reply to them in a
|
|
|
|
|
reasonable timeframe. Acknowledge their replies to concerns if you're happy
|
|
|
|
|
with their argument.
|
|
|
|
|
- Be helpful. Give precise and correct advice when possible and when it will
|
|
|
|
|
help the contributor. This can include code snippets, links to
|
|
|
|
|
code/issues/wiki entries/web pages, or anything else. Educating contributors
|
|
|
|
|
means we are investing in our community.
|
2018-07-06 12:06:21 +02:00
|
|
|
|
- Be friendly. Respect the original author, bearing in mind that their coding
|
|
|
|
|
style or their design may be just as valid as the way you would have done
|
2019-11-26 00:21:53 +01:00
|
|
|
|
it and of course, always follow the [Code of Conduct].
|
2019-10-22 14:13:45 +02:00
|
|
|
|
- If a contributor has opened a PR, the reviewer should attempt to
|
|
|
|
|
help the author of the contribution to get it to its best shape and
|
|
|
|
|
according to the RIOT Standard™. If there is disagreement, it’s important
|
|
|
|
|
to understand the reasons behind and always give technical arguments,
|
|
|
|
|
pros and cons or snippets.
|
2018-06-08 16:06:25 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Organisation of reviewing between maintainers
|
|
|
|
|
|
2018-09-20 13:01:16 +02:00
|
|
|
|
#### Partial review
|
|
|
|
|
|
|
|
|
|
You can review a PR partially. This would involve reviewing all points in one or
|
|
|
|
|
more sections outlined in the [technical guidelines](#technical-guidelines).
|
|
|
|
|
In that case, please do not "approve" the PR to prevent accidental merges.
|
|
|
|
|
Rather, give your verbal ACK and describe what you reviewed. In addition, if you
|
|
|
|
|
processed or reasonably stepped over a whole section, mark the PR with the
|
|
|
|
|
according label from the "Reviewed:" category. If you set a label by stepping
|
|
|
|
|
over a section, please articulate your reasoning for this clearly, as noted in
|
2019-11-26 00:21:53 +01:00
|
|
|
|
the [introduction](#introduction). This will help other maintainers to
|
2018-09-20 13:01:16 +02:00
|
|
|
|
better understand your line of thought. If you disagree with the assessment of
|
|
|
|
|
a previous review, you may remove a certain "Reviewed:" label. Please state your
|
|
|
|
|
reasoning in this case as well.
|
|
|
|
|
|
|
|
|
|
When all "Reviewed:" labels are set you may give your approval for the PR.
|
|
|
|
|
|
2019-11-26 00:21:53 +01:00
|
|
|
|
As for everything in this document this is a "CAN", not a "MUST": It might help
|
2018-09-20 13:01:16 +02:00
|
|
|
|
other maintainers to track your work, but if the overhead isn't justified, a
|
|
|
|
|
simple approving ACK might suffice.
|
2018-06-08 16:06:25 +02:00
|
|
|
|
|
2018-07-03 12:05:40 +02:00
|
|
|
|
#### Github etiquette
|
|
|
|
|
|
2018-09-20 13:57:16 +02:00
|
|
|
|
It is good etiquette to describe what you reviewed, even if you gave the PR a
|
|
|
|
|
full review and gave your approval. This way the contributor and other
|
|
|
|
|
maintainers are able to follow your thought process.
|
|
|
|
|
|
|
|
|
|
Maintainers should only assign themselves to PRs and shouldn't assign other
|
|
|
|
|
maintainers. You can however request reviews from other maintainers or
|
|
|
|
|
contributors, either by mentioning them in a comment or selecting them in
|
|
|
|
|
GitHub's review sidebar.
|
|
|
|
|
|
|
|
|
|
If there are multiple maintainers reviewing a PR, always give the other
|
|
|
|
|
maintainers reasonable time to ACK before dismissing their review.
|
2018-07-03 12:05:40 +02:00
|
|
|
|
|
2019-10-18 17:41:10 +02:00
|
|
|
|
### Release, Feature Freeze, and Backports
|
|
|
|
|
|
|
|
|
|
Before the official release of a new RIOT version, two feature freeze periods
|
|
|
|
|
are announced on the
|
|
|
|
|
[RIOT development email list](https://lists.riot-os.org/mailman/listinfo/devel):
|
|
|
|
|
The soft feature freeze and the hard feature freeze. During the soft feature
|
|
|
|
|
freeze only PRs with minor impact should be merged into master. The hard feature
|
|
|
|
|
freeze begins when the release manager creates a new release branch. Therefore,
|
|
|
|
|
the restriction on merging PRs into the master branch are lifted at that point.
|
|
|
|
|
|
|
|
|
|
Once the release branch is created, no backports of new features will be
|
|
|
|
|
accepted. Instead, backports should consist only of bug fixes or of reverting
|
|
|
|
|
features that were added during the last development period (and not part of any
|
|
|
|
|
release), but didn't reach the required maturity or API stability yet. For
|
|
|
|
|
bigger changes (which explicitly includes any revert), the PR has to be
|
|
|
|
|
announced to the maintainer mailing list and should be merged no sooner than
|
|
|
|
|
48h after the announcement and needs at least two ACKs.
|
|
|
|
|
|
|
|
|
|
In case of security relevant backports (both bug fixes and reverts), the
|
|
|
|
|
announcement can be skipped and the fix merged once at least two ACKs are
|
|
|
|
|
there.
|
|
|
|
|
|
2018-06-08 16:06:25 +02:00
|
|
|
|
[list of maintainers]: https://github.com/RIOT-OS/RIOT/wiki/Maintainers
|
|
|
|
|
[Best Practices]: https://github.com/RIOT-OS/RIOT/wiki/Best-Practice-for-RIOT-Programming
|
|
|
|
|
[Comparing build sizes]: https://github.com/RIOT-OS/RIOT/wiki/Comparing-build-sizes
|
2019-10-25 10:51:55 +02:00
|
|
|
|
[Coding Conventions]: CODING_CONVENTIONS.md
|
2018-06-08 16:06:25 +02:00
|
|
|
|
[Code of Conduct]: https://github.com/RIOT-OS/RIOT/blob/master/CODE_OF_CONDUCT.md
|