blob: 7473a61bef0fc023781331805bd364267eef5a1b [file] [log] [blame]
Andrea Campanella4dd04222022-03-18 15:52:28 +01001Contributing to VOLTHA
2======================
3
4We'd love to accept your patches and contributions to the VOLTHA project. There are
5just a few small guidelines you need to follow.
6
Andrea Campanella4dd04222022-03-18 15:52:28 +01007Guides, Rules and Best Practices
8--------------------------------
9
10VOLTHA 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
12writing, submitting or reviewing code.
13VOLTHA uses gerrit to submit, review, tests and finally merge patches.
14
15Submitting Code
16+++++++++++++++
17
18Some additional points for developers:
19
Joey Armstrong3980d702023-08-23 10:57:18 -040020- 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 Campanella4dd04222022-03-18 15:52:28 +010033
34Steps to successful PRs
35+++++++++++++++++++++++
36
Joey Armstrongf713d7f2023-02-23 06:06:49 -050037 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 Campanella4dd04222022-03-18 15:52:28 +010041
Joey Armstrongf713d7f2023-02-23 06:06:49 -050042 .. list-table:: Patch Pre-Screening
43 :widths: 10, 40
Andrea Campanella4dd04222022-03-18 15:52:28 +010044
Joey Armstrongf713d7f2023-02-23 06:06:49 -050045 * - Command
46 - Description
47 * - `make lint <https://docs.voltha.org/master/howto/code/linting.html>`_
Joey Armstrong34f18402023-07-21 18:58:10 -040048 - Syntax check source for problems (lint, lint-shelcheck, lint-doc8)
Joey Armstrongf713d7f2023-02-23 06:06:49 -050049 * - make sca
50 - Static Code Analysis
Joey Armstrong34f18402023-07-21 18:58:10 -040051 * - make build
52 - Assemble, compile, generate, link, ...
Joey Armstrongf713d7f2023-02-23 06:06:49 -050053 * - make test
54 - Invoke VOLTHA test suite(s)
55 * - make help
Joey Armstrong34f18402023-07-21 18:58:10 -040056 - Show available targets: make help | grep lint
Andrea Campanella4dd04222022-03-18 15:52:28 +010057
Joey Armstrong34f18402023-07-21 18:58:10 -040058 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 Armstrongf713d7f2023-02-23 06:06:49 -050062 Wait for job completion status before proceeding.
63
Joey Armstrong864db882023-08-24 15:01:35 -040064 - 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 Armstrongf713d7f2023-02-23 06:06:49 -050066
Joey Armstrong864db882023-08-24 15:01:35 -040067 - If testing fails please fix your patch with step 3 then repeat 2 and 3 as needed.
Joey Armstrongf713d7f2023-02-23 06:06:49 -050068
69 **Passing CI verification is mandatory.**
70
Joey Armstrong864db882023-08-24 15:01:35 -040071 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 Armstrongf713d7f2023-02-23 06:06:49 -050078 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 Armstrong864db882023-08-24 15:01:35 -040080 patch with `recheck <https://docs.voltha.org/master/howto/code/pull_request.html#development-and-code-reviews>`_
Joey Armstrongf713d7f2023-02-23 06:06:49 -050081
Joey Armstrong1b8fdc32023-12-20 17:22:57 -050082 If failures persist `ask for assistance <https://wiki.opencord.org>`_ in slack or a mailing list.
Joey Armstrongf713d7f2023-02-23 06:06:49 -050083
Joey Armstrong864db882023-08-24 15:01:35 -040084 6. When patch comments are offered please make the appropriate fixes and then
Andrea Campanella4dd04222022-03-18 15:52:28 +010085 amend your commit with `git commit --amend` and re-upload to gerrit with `git review`.
86
Joey Armstrong34f18402023-07-21 18:58:10 -040087 7. Await review. Everyone can comment on code changes, but only Core contributors
Joey Armstrong864db882023-08-24 15:01:35 -040088 can give final review approval.
89
90 **All changes must acquire +2 Approval**.
91
Joey Armstrong1b8fdc32023-12-20 17:22:57 -050092 Join one of the `communication channels <https://wiki.opencord.org>`_
Andrea Campanella4dd04222022-03-18 15:52:28 +010093 to request a review or to bring additional attention to your patch.
94
Joey Armstrong864db882023-08-24 15:01:35 -040095 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 Campanella7dae5ce2022-03-25 16:08:15 +0100102Versioning
103++++++++++
104
105All of the VOLTHA components and the charts include a VERSION file that specifies
106the version of the service, library, protobuf, test suite included in the repository.
Joey Armstrong45fe8052023-06-23 09:51:02 -0400107
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 Campanella7dae5ce2022-03-25 16:08:15 +0100111The VERSION is in the format and follows the `SemVer principles <https://semver.org>`_
112VOLTHA also follows the guidelines on how to increment versions as described in the
113`SemVer specification <https://semver.org/#semantic-versioning-specification-semver>`_.
114
115Each increment of the VERSION file in a patch automatically triggers publishing of the repository
116artifact, e.g. docker images, with that tag.
117In VOLTHA we also use a `x.y.z-dev` format which identifies a non-released component (what is `master`).
118When a patch is merged with the `-dev` suffix in the VERSION file no artifact is published except for `master`
119docker images. The `-dev` suffix should be removed when a feature being worked on and the component
120is ready for release.
121
122We expect contributions to the VOLTHA codebase to follow these rules when submitting a patch
123and the same rules to be enforced by reviewers during the core review process.
124
125
Andrea Campanella4dd04222022-03-18 15:52:28 +0100126Core Contributors
127-----------------
128
129Anyone with a Gerrit account can open new issues, comment on existing issues, or
130contribute code by opening a review.
131
132A **“core contributor”** is someone who can manage, approve and
133merge patches, and create new branches in the main repository.
134
135Core contributors are responsible for maintaining the quality of contributions
136to the codebase. The goal of this program is to have a diverse group of
137individuals whose expertise in aggregate covers the entire project.
138
139The 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
145Becoming a Core Contributor
146+++++++++++++++++++++++++++
147
148Core contributor candidates need to have a demonstrated proficiency with the
149VOLTHA codebase and a track record of code reviews. Members of the Technical
150Steering Team (TST) and existing core contributors will regularly invite people
151to become new core contributors. Nominations can also be made (including
152self-nominations) to the VOLTHA TST (`voltha-tst@opennetworking.org`) at any time.
153
154A good nomination will include details about who the person is (including their email
155and Github and/or Gerrit username) and outline their experience with the VOLTHA codebase
156and project at large.
157Nominations are intended to start a conversation that results in a decision to
158make the person a core contributor – anyone whose nomination is not initially
159approved is encouraged to gain more experience with code submission and code
160review in order to gain further mastery over the codebase. Partial approval is
161also possible (e.g. a person may be granted the ability to handles patches only
162on a certain repository), and full approval may be granted after the contributor
163has gained more experience.
164
165New core contributors will be assigned a mentor that is either a TST member or
166existing core contributor. The mentor will serve as the primary point of contact
167to help onboard the new core contributors and answer any questions they have
168with their new responsibilities. The mentor is not the only point of contact,
169and core contributors should feel free to reach out to others if and when they
170have questions or concerns.
171
172Guidelines for Core Contributors
173++++++++++++++++++++++++++++++++
174
175Contributions in VOLTHA can should be merged after two different +1 arrive on a
176given patch-set that is verified by CI as well.
177For your own contributions, you now have the ability to approve and merge your
178own code, pending that you received two other positive reviews.
179For larger or potentially controversial reviews, please give the
180community an opportunity (at least a few business days) to review your
181contribution. Please always ask for comments on the #voltha-dev Slack channel.
182**With great power comes great responsibility; please don't abuse
183this privilege.**
184
185All Core Contributors have +2 and merge capabilities on all the repositories related
186to the VOLTHA project, but we expect that they are responsible and exercise their
187privilege **only** on patches and repositories they have expertise in and are comfortable reviewing and merging.
188
189To help patchset verification the VOLTHA test infrastructure offers Per-Patchset Verification Jobs
190triggered 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>`_
192We suggest Core contributors to use these triggers when they would like more checks on a patch they are uncertain about
193or that might have differences when applied to hardware pods.
194
195VOLTHA follows `Google’s best practices for code review <https://google.github.io/eng-practices/review/reviewer/>`_.
196You should apply these guidelines strictly and with confidence when reviewing
197submissions.
198
199If you are unsure about something in an issue or a review, leave a comment
200that outlines your concerns. If a resolution is difficult to reach in the
201comments section, the TST meetings are a good place to raise your concerns and
202have a discussion.
203
204Current Core Contributors
205+++++++++++++++++++++++++++
206
207This is a list of core contributors divided by area of expertise:
208
209Adapter openonu and omci-lib-go:
210
Andrea Campanella4dd04222022-03-18 15:52:28 +0100211 - `Chip Boling <chip.boling@tibitcom.com>`_
Andrea Campanella4dd04222022-03-18 15:52:28 +0100212 - `Ozge Ayaz <ozge.ayaz@netsia.com>`_
213
214Voltha-system-tests:
215
TorstenThieme47e59db2023-05-31 08:29:47 +0000216 - to be assigned
Andrea Campanella4dd04222022-03-18 15:52:28 +0100217
218Openolt agent:
219
220 - `Thiyagarajan Subramani <Thiyagarajan.Subramani@radisys.com>`_
221 - `Burak Gurdag <burak.gurdag@netsia.com>`_
222
223ONOS apps:
224
225 - `Gamze Abaka <gamze.abaka@netsia.com>`_
226 - `Yasin Sapli <yasin.sapli@netsia.com>`_
227 - `Tunahan Sezen <tunahan.sezen@netsia.com>`_
228
229Olt adapter, rw-core:
230
231 - `Abhilash Satish Laxmeshwar <abhilash.laxmeshwar@radisys.com>`_
232 - `Gamze Abaka <gamze.abaka@netsia.com>`_
Joey Armstrongf713d7f2023-02-23 06:06:49 -0500233
234Build system, makefiles, reviews:
235
236 - `Joey Armstrong <joey@opennetworking.org>`_
237 - `David Ferguson <daf@opennetworking.org>`_
Andrea Campanella4dd04222022-03-18 15:52:28 +0100238
239All of the codebase:
240
Andrea Campanella4dd04222022-03-18 15:52:28 +0100241 - `Mahir Gunyel <mahir.gunyel@netsia.com>`_
242 - `Serkant Uluderya <serkant.uluderya@netsia.com>`_
243 - `Amit Ghosh <Amit.Ghosh@radisys.com>`_
Joey Armstrongae15c262023-03-29 15:36:28 -0400244 - `Suhas Gururaj Rao <suhas.gururaj@radisys.com>`_
Andrea Campanella4dd04222022-03-18 15:52:28 +0100245
Andrea Campanella4dd04222022-03-18 15:52:28 +0100246Community Guidelines
247--------------------
248
Joey Armstronga4d27232022-12-29 08:50:02 -0500249This project follows `Google's Open Source Community Guidelines <https://opensource.google/conduct/>`_
250
Joey Armstrongf713d7f2023-02-23 06:06:49 -0500251and ONF's `Code of Conduct <https://opennetworking.org/wp-content/themes/onf/img/onf-code-of-conduct.pdf>`_.