Skip to content

Latest commit

 

History

History
144 lines (101 loc) · 7.76 KB

CONTRIBUTING.md

File metadata and controls

144 lines (101 loc) · 7.76 KB

Contributing Guidelines

F´ is a free and open source project used to build embedded software! Are you ready to contribute?

In this file you can find basic information on contributing to . We will walk through how to contribute and the process contributions follow. Remember, we may ask for changes or adjustments to make your submission the best it can be. Fear not! Your submission is still valued! You may even comment on other submissions to help them improve.

Make sure to review our style guidelines when developing code to ensure it meets the standards for F´´

Ways of Contributing

The best way to contribute to F´ is to remain positive and engaged. Just about every contribution needs some improvement before it is ready to be folded in. Stand behind your work, push it forward, and work with us!

Specific Ways to Contribute:

Feel free to contribute any way that suits your skills and enjoy.

Note: F´ Autocoder Python is being actively replaced by FPP. Thus we will no longer accept changes to this code except for security and critical bug fixes done in the most minimal fashion.

We do love Python fixes, please consider contributing to fprime-tools or fprime-gds

Where to Start

First, contributors should build some understanding of F´. Read through the documentation, try a tutorial, or run a reference application. Contributors can find information in our documentation. Keep track of inconsistencies or bugs as these should be reported!

When you are ready to join discussions and submit bug reports use one of the above links!

To contribute to the F´ framework directly, consider writing needed documentation or starting with an easy first issue. When starting to modify F´ directly, ask questions, seek help, and be patient. Remember to review the project structure, development process, and helpful tips sections below. Following the style guidelines is a must for contributing code to F´.

Project Structure

The F´ project is designed as a base software framework with additional packages designed to extend the framework. This means that occasionally we may move contributions in or out of these packages.

Key packages include:

  • fpp: fpp development repository
  • fprime-tools: fprime-util development repository
  • fprime-gds: fprime-gds development repository

F´ Repository Structure

Contributors to the fprime repository should understand the following key folders:

  • docs/UsersGuide: add new documentation in this or a subfolder
  • Fw: changes here will be reviewed carefully because this code is critical across F
  • Ref: update and maintain the Reference application here

Development Process

F´ follows a standard git flow development model. Developers should start with a fork of one of the F´ repositories and then develop according to git flow. Remember to add an upstream remote to your fork such that you may fetch the latest changes.

For each contribution, developers should first fetch the latest changes from upstream. Then create a new branch off devel and submit back to F´ using a pull request as described above.

Preparing A New Branch

git fetch upstream
git checkout upstream/devel
git checkout -b <desired branch name>

Once a pull request has been submitted the following process will begin.

Submission Review

The pull request changes will be reviewed by the team and community supporting F´. Often this means that a discussion on how to improve the submission will arise. Engage in the conversation and work with reviewers to improve the code. Remember, F´ is flight software running in remote environments. This means we hold submissions to very high standards. Do not fear, we are happy to work with contributors to help meet these standards!

Submission reviews can take some time for the team to complete. These reviews may take additional time for pull requests that are very large, touch sensitive code, or have not been discussed beforehand. Sometimes changes are determined to best fit in another repository or package. Please be patient with us and remember we are all one team.

Anyone can review code on F´ but an approved review from a maintainer will be required to complete the submission.

Automated Checking

Once the submission has been reviewed by a maintainer, automated checking will begin. There are many checks that must pass on submitted code to ensure that it is not going to introduce a bug or regression to F´. These checks ensure unit tests pass, development environments remain supported, code runs without crashing, software and documentation quality is upheld, and more!

These checks can be a bit pedantic and this often is the point. Do your best to correct errors or ask for help. Don't be surprised if an F´ maintainer pushes some commits to your branch to help correct minor issues (e.g. spelling errors). In the end, these checks must pass for the submission to continue.

If something seems amiss with one of these checks ask for help on your PR and a maintainer will do their best to help get the submission moving forward.

Final Approval and Submission

Once all corrections have been made, automated checks are passing, and a maintainer has given final approval, it is time to contribute the submission. A maintainer will handle this final step and once complete changes should appear in the devel branch. You can help this process by submitting any deferred or future work items as issues using the links above.

Helpful Tips

This section will describe some helpful tips for contributing to F´.

Keep Submissions Small

Large submissions are difficult to review. Incredibly large pull requests can be very difficult to review and often need to be broken up. Try to keep submissions small, focus on one issue or change in a pull request, and avoid lots of minor changes across many files.

Keep in mind that editors that fix whitespace automatically can cause many small changes. Even with advanced GitHub tools this can increase the effort required to review a submission. Be careful with the changes you are submitting.

Run Tests

The automatic checking system will run all our unit tests and integration tests across several systems. However, this process will take time. Try to run the unit tests locally during development before submitting a PR and use the automatic checks as a safety net.