Andrea Campanella | 4dd0422 | 2022-03-18 15:52:28 +0100 | [diff] [blame] | 1 | Contributing to VOLTHA |
| 2 | ====================== |
| 3 | |
| 4 | We'd love to accept your patches and contributions to the VOLTHA project. There are |
| 5 | just a few small guidelines you need to follow. |
| 6 | |
Andrea Campanella | 4dd0422 | 2022-03-18 15:52:28 +0100 | [diff] [blame] | 7 | Guides, Rules and Best Practices |
| 8 | -------------------------------- |
| 9 | |
| 10 | VOLTHA follows `Google's Engineering Practices <https://google.github.io/eng-practices/>`_, |
| 11 | `Golang Formatting Guide <https://go.dev/doc/effective_go#formatting>`_. Use these documents as a guide when |
| 12 | writing, submitting or reviewing code. |
| 13 | VOLTHA uses gerrit to submit, review, tests and finally merge patches. |
| 14 | |
| 15 | Submitting Code |
| 16 | +++++++++++++++ |
| 17 | |
| 18 | Some additional points for developers: |
| 19 | |
Joey Armstrong | 3980d70 | 2023-08-23 10:57:18 -0400 | [diff] [blame] | 20 | - Submit your changes early and often. Code and design review input |
| 21 | with corrections early in the process prevent huge changes later. |
| 22 | - :doc:`Create a Jira ticket for code changes <contributing/jira_tickets>` (required) |
| 23 | - :doc:`Update copyright notices <contributing/copyright>` |
| 24 | - `Commit message <https://docs.voltha.org/master/howto/code/commit-message.html#pull-request-commit-message>`_ and jenkins automation. |
| 25 | |
| 26 | - To enable automation, prefix your commit message with a jira ticket |
| 27 | |
| 28 | - ``[VOL-4550]`` - Spiffy enhancement/feature/problem summary |
| 29 | |
| 30 | - This addition will allow jenkins to magically update tickets |
| 31 | with processed job status. |
| 32 | - :doc:`Request a code review <contributing/code_review>` |
Andrea Campanella | 4dd0422 | 2022-03-18 15:52:28 +0100 | [diff] [blame] | 33 | |
| 34 | Steps to successful PRs |
| 35 | +++++++++++++++++++++++ |
| 36 | |
Joey Armstrong | f713d7f | 2023-02-23 06:06:49 -0500 | [diff] [blame] | 37 | 1. Checkout the code base and prepare your patch. |
| 38 | 2. Workflow to modify VOLTHA code through gerrit is identical to `onos-classic` |
| 39 | and is described in `Sample Gerrit Workflow page <https://wiki.onosproject.org/display/ONOS/Sample+Gerrit+Workflow>`_ |
| 40 | 3. Before submitting your patch via `git review` please pre-screen your changes to ensure code quality. |
Andrea Campanella | 4dd0422 | 2022-03-18 15:52:28 +0100 | [diff] [blame] | 41 | |
Joey Armstrong | f713d7f | 2023-02-23 06:06:49 -0500 | [diff] [blame] | 42 | .. list-table:: Patch Pre-Screening |
| 43 | :widths: 10, 40 |
Andrea Campanella | 4dd0422 | 2022-03-18 15:52:28 +0100 | [diff] [blame] | 44 | |
Joey Armstrong | f713d7f | 2023-02-23 06:06:49 -0500 | [diff] [blame] | 45 | * - Command |
| 46 | - Description |
| 47 | * - `make lint <https://docs.voltha.org/master/howto/code/linting.html>`_ |
Joey Armstrong | 34f1840 | 2023-07-21 18:58:10 -0400 | [diff] [blame] | 48 | - Syntax check source for problems (lint, lint-shelcheck, lint-doc8) |
Joey Armstrong | f713d7f | 2023-02-23 06:06:49 -0500 | [diff] [blame] | 49 | * - make sca |
| 50 | - Static Code Analysis |
Joey Armstrong | 34f1840 | 2023-07-21 18:58:10 -0400 | [diff] [blame] | 51 | * - make build |
| 52 | - Assemble, compile, generate, link, ... |
Joey Armstrong | f713d7f | 2023-02-23 06:06:49 -0500 | [diff] [blame] | 53 | * - make test |
| 54 | - Invoke VOLTHA test suite(s) |
| 55 | * - make help |
Joey Armstrong | 34f1840 | 2023-07-21 18:58:10 -0400 | [diff] [blame] | 56 | - Show available targets: make help | grep lint |
Andrea Campanella | 4dd0422 | 2022-03-18 15:52:28 +0100 | [diff] [blame] | 57 | |
Joey Armstrong | 34f1840 | 2023-07-21 18:58:10 -0400 | [diff] [blame] | 58 | 4. :ref:`Commit message syntax and testing directives <pull-request--commit-message>` |
| 59 | |
| 60 | 5. Submitting your patch will initiate a validation |
| 61 | `jenkins job <https://jenkins.opencord.org>`_. |
Joey Armstrong | f713d7f | 2023-02-23 06:06:49 -0500 | [diff] [blame] | 62 | Wait for job completion status before proceeding. |
| 63 | |
Joey Armstrong | 864db88 | 2023-08-24 15:01:35 -0400 | [diff] [blame] | 64 | - Job status will be sent to you asynchronously in email at job completion. |
| 65 | - For direct monitoring :doc:`review gerrit Change Log<contributing/patch_followup>` for your patch. |
Joey Armstrong | f713d7f | 2023-02-23 06:06:49 -0500 | [diff] [blame] | 66 | |
Joey Armstrong | 864db88 | 2023-08-24 15:01:35 -0400 | [diff] [blame] | 67 | - If testing fails please fix your patch with step 3 then repeat 2 and 3 as needed. |
Joey Armstrong | f713d7f | 2023-02-23 06:06:49 -0500 | [diff] [blame] | 68 | |
| 69 | **Passing CI verification is mandatory.** |
| 70 | |
Joey Armstrong | 864db88 | 2023-08-24 15:01:35 -0400 | [diff] [blame] | 71 | To view accumulated job status: |
| 72 | |
| 73 | - `navigate to a patch <https://gerrit.opencord.org/c/ci-management/+/34599>`_ |
| 74 | - View "Submit requirements" in the top left. |
| 75 | - Verified ``+1 Jenkins Technical User`` will indicate SUCCESS. |
| 76 | - Verified ``-1 Jenkins Technical User`` will indicate FAILURE. |
| 77 | |
Joey Armstrong | f713d7f | 2023-02-23 06:06:49 -0500 | [diff] [blame] | 78 | If the CI check does not start or fails and you believe the issue is |
| 79 | un-related to a changeset you can re-trigger by commenting on the |
Joey Armstrong | 864db88 | 2023-08-24 15:01:35 -0400 | [diff] [blame] | 80 | patch with `recheck <https://docs.voltha.org/master/howto/code/pull_request.html#development-and-code-reviews>`_ |
Joey Armstrong | f713d7f | 2023-02-23 06:06:49 -0500 | [diff] [blame] | 81 | |
Joey Armstrong | 1b8fdc3 | 2023-12-20 17:22:57 -0500 | [diff] [blame] | 82 | If failures persist `ask for assistance <https://wiki.opencord.org>`_ in slack or a mailing list. |
Joey Armstrong | f713d7f | 2023-02-23 06:06:49 -0500 | [diff] [blame] | 83 | |
Joey Armstrong | 864db88 | 2023-08-24 15:01:35 -0400 | [diff] [blame] | 84 | 6. When patch comments are offered please make the appropriate fixes and then |
Andrea Campanella | 4dd0422 | 2022-03-18 15:52:28 +0100 | [diff] [blame] | 85 | amend your commit with `git commit --amend` and re-upload to gerrit with `git review`. |
| 86 | |
Joey Armstrong | 34f1840 | 2023-07-21 18:58:10 -0400 | [diff] [blame] | 87 | 7. Await review. Everyone can comment on code changes, but only Core contributors |
Joey Armstrong | 864db88 | 2023-08-24 15:01:35 -0400 | [diff] [blame] | 88 | can give final review approval. |
| 89 | |
| 90 | **All changes must acquire +2 Approval**. |
| 91 | |
Joey Armstrong | 1b8fdc3 | 2023-12-20 17:22:57 -0500 | [diff] [blame] | 92 | Join one of the `communication channels <https://wiki.opencord.org>`_ |
Andrea Campanella | 4dd0422 | 2022-03-18 15:52:28 +0100 | [diff] [blame] | 93 | to request a review or to bring additional attention to your patch. |
| 94 | |
Joey Armstrong | 864db88 | 2023-08-24 15:01:35 -0400 | [diff] [blame] | 95 | 8. A patch will be ready to submit a merge request when |
| 96 | |
| 97 | - "Submit requirements" in the top left is showing: |
| 98 | |
| 99 | - Code-Review: +2 approval (or 2 x +1 approval) |
| 100 | - Verified ``+1 Jenkins Technical User`` |
| 101 | |
Andrea Campanella | 7dae5ce | 2022-03-25 16:08:15 +0100 | [diff] [blame] | 102 | Versioning |
| 103 | ++++++++++ |
| 104 | |
| 105 | All of the VOLTHA components and the charts include a VERSION file that specifies |
| 106 | the version of the service, library, protobuf, test suite included in the repository. |
Joey Armstrong | 45fe805 | 2023-06-23 09:51:02 -0400 | [diff] [blame] | 107 | |
| 108 | - The `VERSION <https://gerrit.opencord.org/plugins/gitiles/voltha-go/+/refs/heads/master/VERSION>`_ file can be found in a repository root directory. |
| 109 | - One exception: maven based builds using pom.xml files. |
| 110 | |
Andrea Campanella | 7dae5ce | 2022-03-25 16:08:15 +0100 | [diff] [blame] | 111 | The VERSION is in the format and follows the `SemVer principles <https://semver.org>`_ |
| 112 | VOLTHA also follows the guidelines on how to increment versions as described in the |
| 113 | `SemVer specification <https://semver.org/#semantic-versioning-specification-semver>`_. |
| 114 | |
| 115 | Each increment of the VERSION file in a patch automatically triggers publishing of the repository |
| 116 | artifact, e.g. docker images, with that tag. |
| 117 | In VOLTHA we also use a `x.y.z-dev` format which identifies a non-released component (what is `master`). |
| 118 | When a patch is merged with the `-dev` suffix in the VERSION file no artifact is published except for `master` |
| 119 | docker images. The `-dev` suffix should be removed when a feature being worked on and the component |
| 120 | is ready for release. |
| 121 | |
| 122 | We expect contributions to the VOLTHA codebase to follow these rules when submitting a patch |
| 123 | and the same rules to be enforced by reviewers during the core review process. |
| 124 | |
| 125 | |
Andrea Campanella | 4dd0422 | 2022-03-18 15:52:28 +0100 | [diff] [blame] | 126 | Core Contributors |
| 127 | ----------------- |
| 128 | |
| 129 | Anyone with a Gerrit account can open new issues, comment on existing issues, or |
| 130 | contribute code by opening a review. |
| 131 | |
| 132 | A **“core contributor”** is someone who can manage, approve and |
| 133 | merge patches, and create new branches in the main repository. |
| 134 | |
| 135 | Core contributors are responsible for maintaining the quality of contributions |
| 136 | to the codebase. The goal of this program is to have a diverse group of |
| 137 | individuals whose expertise in aggregate covers the entire project. |
| 138 | |
| 139 | The benefits of being a core contributor include: |
| 140 | - Increased influence of the direction of the project |
| 141 | - The ability to create branches in the main repository and after others approve it |
| 142 | merge your own code |
| 143 | - Community recognition and visibility for their contributions and expertise. |
| 144 | |
| 145 | Becoming a Core Contributor |
| 146 | +++++++++++++++++++++++++++ |
| 147 | |
| 148 | Core contributor candidates need to have a demonstrated proficiency with the |
| 149 | VOLTHA codebase and a track record of code reviews. Members of the Technical |
| 150 | Steering Team (TST) and existing core contributors will regularly invite people |
| 151 | to become new core contributors. Nominations can also be made (including |
| 152 | self-nominations) to the VOLTHA TST (`voltha-tst@opennetworking.org`) at any time. |
| 153 | |
| 154 | A good nomination will include details about who the person is (including their email |
| 155 | and Github and/or Gerrit username) and outline their experience with the VOLTHA codebase |
| 156 | and project at large. |
| 157 | Nominations are intended to start a conversation that results in a decision to |
| 158 | make the person a core contributor – anyone whose nomination is not initially |
| 159 | approved is encouraged to gain more experience with code submission and code |
| 160 | review in order to gain further mastery over the codebase. Partial approval is |
| 161 | also possible (e.g. a person may be granted the ability to handles patches only |
| 162 | on a certain repository), and full approval may be granted after the contributor |
| 163 | has gained more experience. |
| 164 | |
| 165 | New core contributors will be assigned a mentor that is either a TST member or |
| 166 | existing core contributor. The mentor will serve as the primary point of contact |
| 167 | to help onboard the new core contributors and answer any questions they have |
| 168 | with their new responsibilities. The mentor is not the only point of contact, |
| 169 | and core contributors should feel free to reach out to others if and when they |
| 170 | have questions or concerns. |
| 171 | |
| 172 | Guidelines for Core Contributors |
| 173 | ++++++++++++++++++++++++++++++++ |
| 174 | |
| 175 | Contributions in VOLTHA can should be merged after two different +1 arrive on a |
| 176 | given patch-set that is verified by CI as well. |
| 177 | For your own contributions, you now have the ability to approve and merge your |
| 178 | own code, pending that you received two other positive reviews. |
| 179 | For larger or potentially controversial reviews, please give the |
| 180 | community an opportunity (at least a few business days) to review your |
| 181 | contribution. Please always ask for comments on the #voltha-dev Slack channel. |
| 182 | **With great power comes great responsibility; please don't abuse |
| 183 | this privilege.** |
| 184 | |
| 185 | All Core Contributors have +2 and merge capabilities on all the repositories related |
| 186 | to the VOLTHA project, but we expect that they are responsible and exercise their |
| 187 | privilege **only** on patches and repositories they have expertise in and are comfortable reviewing and merging. |
| 188 | |
| 189 | To help patchset verification the VOLTHA test infrastructure offers Per-Patchset Verification Jobs |
| 190 | triggered by specific keyword used in the patch. More information can be found in the |
| 191 | `testing automation page <https://docs.voltha.org/master/testing/voltha_test_automation.html#per-patchset-verification-jobs>`_ |
| 192 | We suggest Core contributors to use these triggers when they would like more checks on a patch they are uncertain about |
| 193 | or that might have differences when applied to hardware pods. |
| 194 | |
| 195 | VOLTHA follows `Google’s best practices for code review <https://google.github.io/eng-practices/review/reviewer/>`_. |
| 196 | You should apply these guidelines strictly and with confidence when reviewing |
| 197 | submissions. |
| 198 | |
| 199 | If you are unsure about something in an issue or a review, leave a comment |
| 200 | that outlines your concerns. If a resolution is difficult to reach in the |
| 201 | comments section, the TST meetings are a good place to raise your concerns and |
| 202 | have a discussion. |
| 203 | |
| 204 | Current Core Contributors |
| 205 | +++++++++++++++++++++++++++ |
| 206 | |
| 207 | This is a list of core contributors divided by area of expertise: |
| 208 | |
| 209 | Adapter openonu and omci-lib-go: |
| 210 | |
Andrea Campanella | 4dd0422 | 2022-03-18 15:52:28 +0100 | [diff] [blame] | 211 | - `Chip Boling <chip.boling@tibitcom.com>`_ |
Andrea Campanella | 4dd0422 | 2022-03-18 15:52:28 +0100 | [diff] [blame] | 212 | - `Ozge Ayaz <ozge.ayaz@netsia.com>`_ |
| 213 | |
| 214 | Voltha-system-tests: |
| 215 | |
TorstenThieme | 47e59db | 2023-05-31 08:29:47 +0000 | [diff] [blame] | 216 | - to be assigned |
Andrea Campanella | 4dd0422 | 2022-03-18 15:52:28 +0100 | [diff] [blame] | 217 | |
| 218 | Openolt agent: |
| 219 | |
| 220 | - `Thiyagarajan Subramani <Thiyagarajan.Subramani@radisys.com>`_ |
| 221 | - `Burak Gurdag <burak.gurdag@netsia.com>`_ |
| 222 | |
| 223 | ONOS apps: |
| 224 | |
| 225 | - `Gamze Abaka <gamze.abaka@netsia.com>`_ |
| 226 | - `Yasin Sapli <yasin.sapli@netsia.com>`_ |
| 227 | - `Tunahan Sezen <tunahan.sezen@netsia.com>`_ |
| 228 | |
| 229 | Olt adapter, rw-core: |
| 230 | |
| 231 | - `Abhilash Satish Laxmeshwar <abhilash.laxmeshwar@radisys.com>`_ |
| 232 | - `Gamze Abaka <gamze.abaka@netsia.com>`_ |
Joey Armstrong | f713d7f | 2023-02-23 06:06:49 -0500 | [diff] [blame] | 233 | |
| 234 | Build system, makefiles, reviews: |
| 235 | |
| 236 | - `Joey Armstrong <joey@opennetworking.org>`_ |
| 237 | - `David Ferguson <daf@opennetworking.org>`_ |
Andrea Campanella | 4dd0422 | 2022-03-18 15:52:28 +0100 | [diff] [blame] | 238 | |
| 239 | All of the codebase: |
| 240 | |
Andrea Campanella | 4dd0422 | 2022-03-18 15:52:28 +0100 | [diff] [blame] | 241 | - `Mahir Gunyel <mahir.gunyel@netsia.com>`_ |
| 242 | - `Serkant Uluderya <serkant.uluderya@netsia.com>`_ |
| 243 | - `Amit Ghosh <Amit.Ghosh@radisys.com>`_ |
Joey Armstrong | ae15c26 | 2023-03-29 15:36:28 -0400 | [diff] [blame] | 244 | - `Suhas Gururaj Rao <suhas.gururaj@radisys.com>`_ |
Andrea Campanella | 4dd0422 | 2022-03-18 15:52:28 +0100 | [diff] [blame] | 245 | |
Andrea Campanella | 4dd0422 | 2022-03-18 15:52:28 +0100 | [diff] [blame] | 246 | Community Guidelines |
| 247 | -------------------- |
| 248 | |
Joey Armstrong | a4d2723 | 2022-12-29 08:50:02 -0500 | [diff] [blame] | 249 | This project follows `Google's Open Source Community Guidelines <https://opensource.google/conduct/>`_ |
| 250 | |
Joey Armstrong | f713d7f | 2023-02-23 06:06:49 -0500 | [diff] [blame] | 251 | and ONF's `Code of Conduct <https://opennetworking.org/wp-content/themes/onf/img/onf-code-of-conduct.pdf>`_. |