User Tools

Site Tools


agl-distro:contributing

Contributing to the AGL Distro

The AGL community appreciates feedback, ideas, suggestion, bugs and documentation just as much as code. Please join the irc conversation at the #automotive channel on irc.freenode.net and our mailing list.

Contributing Code

We use Gerrit to track and review changes to AGL software (i.e. projects at gerrit.automotivelinux.org).

Create an account on identity.linuxfoundation.org to get started.

The initial setup for gerrit is described very well on the Gerrit Tutorial from mediawiki . Just apply the steps likewise on git.automotivelinux.org .


Gerrit Usage

Use cases were created to describe the desired usage for gerrit. Those may be reviewed here.

Repo set up

The AGL gerrit setup is divided into three main repository groups

  1. AGL - contains the recipes for building the AGL distribution.
  2. src - contains source code repositories where AGL is the upstream. This code is officially part of the AGL distribution.
  3. staging - contains source code repositories where AGL developers can work on new features or components that can eventually be included in the AGL distribution.

Git repository requests

Developers may request a new project to be set up in the src or staging repository by submitting a Jira ticket. Ticket type should be a “Task”

  1. Owner name(s), gerrit user ID or email address
  2. Project maintainers if different from the Owner
  3. Project name
  4. Short project description (1 line)
  5. Repo name (if different from the project name)

An administrator will create the repo (/src/<name> or /staging/<name>) and also a gerrit group for the repo called “<name>-owners” .

Access Control

Access control to gerrit is defined in this google doc spreadsheet.

Gerrit Roles

The overall Gerrit workflow for a code change submitted to the project follows this diagram.

One can assume that requesting changes to be reverted will follow the same flow as those for new code and patches. Access to various functions within gerrit is granted according the roles defined here.

AGL Committer

The most general role in the project is the AGL-committer. They may push proposed changes to gerrit, initiate a code review of those changes, and perform code reviews of proposed changes.

AGL Mergers

The ability to accept and merge changes into the AGL Repositories is reserved for role of AGL-mergers. AGL-mergers have all access granted to AGL-committers as well as the ability to +2 or -2 any proposed changes and submit those changes to the AGL Repository in gerrit. Self-review by AGL Mergers is generally frowned upon and AGL-mergers should only give a +2 or -2 after others reviewers after weighed in on the change.

General Access

Registered users in gerrit without any of the above access levels may fetch the repositories or may participate in reviews. This allows registered users to be added to reviews by committers without having to be added to the Committer list.


Patch Review and Merge Policy

In addition to providing comments and suggestions for improvement, reviewers are encouraged to respond to changes with an overall +1, -1 type value. The meaning of these numbers is explained in the Gerrit documentation: Code review labels

Here is a brief summary of the values:

-2: This must not be merged.
-1: I would prefer that this is not merged as is.
0: I am not making any statement about this change at the moment.
+1: Looks good to me, but someone else must approve it.
+2: Looks good to me, approved.

These values do not get added together by Gerrit, so two +1s do not lead to an automatic merge.

Changes can only be merged to the master branch once they have received a +2 and no -2. Only members of the AGL-Mergers group can give +2.


Gerrit Use Cases

Actors

  1. App Developer (AD) - Someone who is developing applications to be used with AGL. The AD is assumed to need no knowledge of Yocto and relies on an SDK.
  2. Registered Developer (RD) - Someone who wants to contribute code to AGL but may not be affiliated with a subsystem
  3. Subsystem Maintainer (SM) - A SM is the same as Subsystem Developer but with additional privileges that allow him to submit changes to the master branch, tracking branch, or a maintenance branch
  4. System Integrator (SI)
  5. Release Manager (RM)
  6. Unregistered Developer (UD) - A developer who downloads and uses AGL code but does not plan to contribute code.
  7. CI System Manager (CISM)

Repositories

  1. Meta-data repositories define Yocto layers and contain build recipes and patches. They do not contain source code other than patches
  2. Source Code repositories contain source code. Build recipes for the code will being the meta-data repositories Examples include:
    1. AGL is the upstream for the particular component
    2. AGL is using code back-ported from later versions of a new component or part of a component (e.g., MOST USB driver in mainline kernel tree)
    3. AGL is maintaining code out of the upstream tree which may or may not be accepted upstream (this should be rare since it implies a fork of the upstream code. Patches are preferable)

Prepare to push changes in Gerrit

By default the repo tool will have cloned the git repos with http for fetch and ssh to push.

 #cd meta-agl
 #git remote -v
     agl	https://gerrit.automotivelinux.org/gerrit/AGL/meta-agl (fetch)
     agl	ssh://gerrit.automotivelinux.org:29418/AGL/meta-agl (push)

If you want to use your ssh config, add your gerrit user accout to your ssh config file like:

 #cat ~/.ssh/config
   Host gerrit.automotivelinux.org
   User XXXMyNameXXX

Note: you still need to enter you ssh public key in Gerrit. You can find a HowTo here

Push changes for review to Gerrit

Please sign you commit before you submit the change (otherwise it will not be accepted by gerrit):

 git commit --signoff
  • Then either use plain git to push:
 git push agl HEAD:refs/for/master
 git push <remote> HEAD:refs/for/<targetbranch>
  • Or for more convenience, install “git-review” and instead of git push use:
 # first time only
 git review -s  
 # then to push use
 git review

Find more details in these guides:

Personal Sandbox Projects in Gerrit

First time:

 meta-agl> git push gerrit testsandbox:refs/heads/sandbox/jsmoeller/test
Total 0 (delta 0), reused 0 (delta 0)
remote: Processing changes: closed: 114, refs: 1, done    
To ssh://jsmoeller@gerrit.automotivelinux.org:29418/AGL/meta-agl
 * [new branch]      testsandbox -> sandbox/jsmoeller/test''

Push to personal branch:

git push gerrit testsandbox:refs/for/sandbox/jsmoeller/test
Counting objects: 2, Fertig.
Delta compression using up to 8 threads.
Compressing: 100% (2/2), Fertig.
Writing objects: 100% (2/2), 327 bytes | 0 bytes/s, Fertig.
Total 2 (delta 1), reused 0 (delta 0)
remote: Resolving deltas: 100% (1/1)
remote: Processing changes: new: 1, refs: 1, done    
remote: 
remote: New Changes:
remote:   https://gerrit.automotivelinux.org/gerrit/5643 test1
remote: 
To ssh://jsmoeller@gerrit.automotivelinux.org:29418/AGL/meta-agl
 * [new branch]      testsandbox -> refs/for/sandbox/jsmoeller/test


Notes on Use Cases

  • In this context a subsystem is part of the AGL platform code (meta-agl, meta-ivi-common, meta-oe, etc.). A subsystem may have a meta-data repository and/or multiple Code repositories
  • In this context an App is any code that runs on the AGL platform and will generally be part of Code Repositories
  • A role of App Maintainer can be envisioned, but since the App Developer has the power of +2 an App Maintainer was not included

Use Cases

App Developer Use Cases

  1. As an AD I want to write App code and approve code (+2) without getting +2 from anyone else.
  2. As an AD I want to write App code and request reviews from any other developers
  3. As an AD I want to submit patches to the AGL subsystems for review by SDs and SMs.

Subsystem Developer Use Cases

  1. On further review the SD role is identical to the RD and can be removed (Walt 21 Mar 2016)
  2. As a SD I want to write code and submit it for review by other developers. They can be RDs, SDs and/or SMs<del> - <del>As a SD I want to review code and approve or reject it. (+1, -1)

Subsystem Maintainer Use Cases

  1. As a SM I want to review and approve code (+1,+2) submitted to my subsystem
  2. As a SM I want to review and reject code (-1,-2) submitted to my subsystem
  3. As a SM I want to review and approve code (+1) submitted to my subsystem
  4. As a SM I want to write code for my subsystem and submit for review by other developers (+1) and SMs (+1 or +2)
    1. Alternate Scenario
      1. As a SM I want to write code and push it to master without getting +2 from another SM
  5. As a SM I want to pull changes from upstream for the packages that are part of the subsystem.
  6. As a SM I want to push changes upstream for the packages that are part of the subsystem
  7. As a SM I want to back port new features (code) to AGL code from upstream. In some cases this will be patches and in some cases this is source code.
  8. As a SM I want to create branches to test changes prior to merging to the master branch.

Registered Developer Use Cases

  1. As a RD I want to download AGL pre-built binaries
  2. As a RD I want to write code for a subsystem and submit it for review (+1, +2) by SMs or RDs (+1)
  3. As a RD I want to write code for an existing app and submit it for review (+1, +2) by the ADs for the particular app.
  4. As a RD I want to review code and approve or reject it. (+1, -1)
  5. As a RD I want to be able to create a sandbox branch to develop code within the AGL build environment and share the sandbox branch with other RDs for collaboration
  6. As a RD I do not want other RDs to push to my sandbox branch
  7. As a RD I want to build other RDs sandbox branches in my environment and add changes using to it using my own sandbox branch.
  8. As a RD I want to push sandbox code into the AGL platform and have it maintained as part of the regular process. Once this is accomplished the AGL platform becomes the upstream for the formerly sandboxed code

Unregistered Developer Use Cases

  1. As a UD I want to see AGL source code
  2. As a UD I want to download AGL pre-built binaries

System Integrator Use Cases

  1. As a SI I want to update the Yocto version of the entire AGL code base.
  2. As a SI I want to add additional boards to be supported to the build
  3. As a SI I want to approve all changes to the master for meta-data repositories (+2)
  4. As a SI I want to tag Release Candidates on the master branch and inform team members how to access those release candidates
  5. As a SI I want to inform the RM that a stable release should be prepared
  6. As a SI I want to inform the RM that a patch release should be prepared

Release Manager

  1. As a RM I want to create maintenance branches for stable releases
  2. As a RM I want to approve all changes to maintenance branches for meta-data repositories (+2)
  3. As a RM I want to tag stable releases and be able to recreate the build for those stable releases
  4. As a RM I want to make patch releases to stable releases
agl-distro/contributing.txt · Last modified: 2020/07/10 21:02 by jsmoeller