Please help us by finding problems, discussing on the mailing lists, contributing documentation, bug fixes or even features. Below are some brief guidelines. They are essentially a copy of the SIRF Contribution guidelines. you might want to check those as well, in case they are more recent.
Please use our issue-tracker.
For contributing any code or documentation that is non-trivial, we require a signed Contributor License Agreement, stating clearly that your contributions are licensed appropriately. This will normally need to be signed by your employer/university, unless you own your own copyright. You will have to do this only once. Please contact us for more information.
Please keep a patch focused on a single issue/feature. This is important to keep our history clean, but will also help reviewing things and therefore speed-up acceptance.
This is our recommended process. If it sounds too daunting, ask for help.
- Create a new issue (see above). State that you will contribute a fix if you intend to do so.
- Create a fork on github and work from there.
- Create a branch in your fork with a descriptive name and put your fixes there. If your fix is simple you could do it on github by editing a file, otherwise clone your project (or add a remote to your current git clone) and work as usual.
- If your change is important, add it to CHANGES.md and even README.md or other documentation files.
- Use well-formed commit messages for each change (in particular with a single "subject" line followed by an empty line and then more details).
- Push the commits to your fork and submit a pull request (PR) (enable changes by project admins.) In the description of the PR, add a statement about which Issue this applies to using a phrase such that github auto-closes the issue when merged to master.
- Be prepared to add further commits to your branch after discussion. Please by mindful about the resources used by our Continuous Integration (CI) workflows:
- Group your commits and only push once your code compiles and tests succeed on your machine
- Use specific keywords in the body of the last commit that you push to prevent CI being run:
[ci skip]
skips all CI runs (e.g. when you only change documentation, or when your update isn't ready yet)[actions skip]
does not run GitHub Actions, see here.a
- After acceptance of your PR, go home with a nice warm feeling.
Suggested reading: https://help.github.com/articles/fork-a-repo/, https://git-scm.com/book/en/v2/GitHub-Contributing-to-a-Project or https://guides.github.com/activities/forking/.
(Almost) all SIRF files start with a copyright and license header. Please do this for your files as well. If you modify an existing file, you need to make sure the copyright header is up-to-date for your changes (unless it's a trivial change).
If you copied code from somewhere, you need to preserve its copyright date/notice. If you copied non-SIRF code, you need to make sure its license is compatible with the SIRF license, and indicate clearly what the license of the copied code is (and follow its terms of course).
In addition, you might need to add yourself to NOTICE.txt.
- Only one official, stable, up-to-date branch: master
- Essentially "latest stable beta version with no known bugs since the last official release version"
- Never knowingly add a bug to master
- Any work-in-progress commits should be in their own branches.
- GitHub assigns a unique number to each issue, c.f. the issue-tracker.
- A pull request (PR) is an issue with an associated branch, c.f. pull-requests. Even for "internal" development, we prefer a PR for a branch to allow review and discussion.
- Branches and PRs are kept small (ideally one 'feature' only) and branch from master, not from another branch, unless required. This allows commenting/improving/merging this branch/PR independent of other developments.
- Discussions on issues and PRs are forwarded to the
SyneRBI-DEVEL@jiscmail.ac.uk mailing list daily.
- Forwarded from github via the googlegroup, which is also a backup in case github dies.
- Contributions of new features should also update documentation and release notes. After version 1.0, this needs documentation needs to state something like "introduced after version 1.xxx".
- We prefer issues to be opened via github due to the following reasons:
- Ensures issues will never get lost in emails
- Facilitates issue status tracking
- Allows focused comments/discussion
- Easy cross-referencing of related issues, PRs, and commits
- The mailing list gets notified within 24 hours.
- Ensures issues will never get lost in emails