File: git-github.rst

package info (click to toggle)
openmpi 5.0.8-4
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 201,684 kB
  • sloc: ansic: 613,078; makefile: 42,353; sh: 11,194; javascript: 9,244; f90: 7,052; java: 6,404; perl: 5,179; python: 1,859; lex: 740; fortran: 61; cpp: 20; tcl: 12
file content (196 lines) | stat: -rw-r--r-- 7,289 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
GitHub, Git, and related topics
===============================

GitHub
------

Open MPI's Git repositories are `hosted at GitHub
<https://github.com/open-mpi/ompi>`_.

#. First, you will need a Git client. We recommend getting the latest
   version available. If you do not have the command ``git`` in your
   path, you will likely need to download and install Git.
#. `ompi <https://github.com/open-mpi/ompi/>`_ is the main Open MPI
   repository where most active development is done.  Git clone this
   repository.  Note that the use of the ``--recursive`` CLI option is
   necessary because Open MPI uses Git submodules::

      shell$ git clone --recursive https://github.com/open-mpi/ompi.git

Note that Git is natively capable of using many forms of web
proxies. If your network setup requires the user of a web proxy,
`consult the Git documentation for more details
<https://git-scm.com/>`_.

Git commits: open source / contributor's declaration
----------------------------------------------------

In order to remain open source, all new commits to the Open MPI
repository must include a ``Signed-off-by:`` line, indicating the
submitter's agreement to the :ref:`Open MPI Contributor's Declaration
<contributing-contributors-declaration-label>`.

.. tip:: You can use the ``-s`` option to ``git commit`` to
         automatically add the ``Signed-off-by:`` line to your commit
         message.

.. _git-github-branch-scheme-label:

Git branch scheme
-----------------

Generally, Open MPI has two types of branches in its Git repository:

#. ``main``:

   * All active development occurs on the ``main`` branch (new features,
     bug fixes, etc.).

#. Release branches of the form ``vMAJOR.MINOR.x`` (e.g., ``v4.0.x``,
   ``v4.1.x``, ``v5.0.x``).

   * The ``.x`` suffix indicates that this branch is used to create
     all releases in the Open MPI vMAJOR.MINOR series.
   * Periodically, the Open MPI community will make a new release
     branch, typically from ``main``.
   * A Git tag of the form ``vMAJOR.MINOR.RELEASE`` is used to
     indicate the specific commit on a release branch from where
     official Open MPI release tarball was created (e.g., ``v4.1.0``,
     ``v4.1.1``, ``v4.1.2``, etc.).

Once a bug is fixed or a new feature is implemented on ``main``, it is
cherry-picked over to the relevant release branch(es).

.. attention:: It may seem odd to some, but the Open MPI community
               development model does *not* PR bug fixes or new
               features directly to release branches.  Instead,
               initial bug-fix / feature PRs are generally first made
               to ``main``.

               This helps us ensure that future releases (with
               ``main`` as a Git ancestor) will contain the bug fix /
               feature.

For example:

.. code:: sh

   shell$ git checkout main
   shell$ git pull --rebase
   shell$ git checkout pr/bug-fix

   # ... make changes / fix a bug / etc. ...

   shell$ git add ...
   shell$ git commit -s ...
   shell$ git push myfork

At this point, you go create a PR from your fork's ``pr/bug-fix``
branch to the Open MPI community GitHub repo ``main`` branch.  Work
with the community to get the PR completed and merged.  Then you can
open a new PR to cherry pick the Git commits from that bug fix to each
of the relevant release branches.

Depending on how far the release branch has diverged from ``main``,
there may be some porting effort involved in the cherry-pick.

For example, if your bug fix on ``main`` is comprised of a single Git
commit hash ``123abc``:

.. code:: sh

   # Fetch all upstream git activity, including the merge of the "main" PR.
   shell$ get fetch --all

   # Check out the target release branch, and advance to the most recent commit.
   shell$ git checkout v5.0.x
   shell$ git pull --rebase

   # Make a branch for your bug fix
   shell$ git checkout -b pr/v5.0.x/bug-fix
   # Cherry pick the commit from the "main" branch
   shell$ git cherry-pick -x 123abc
   # Push to your fork
   shell$ git push myfork

The Open MPI development community *requires* adding the following
line to the commit message of cherry-picked commits on release
branches:

.. code:: text

   (cherry picked from commit [git_hash_of_original_commit])

.. note:: Note the use of the ``-x`` option to ``git cherry-pick``.
          This option automatically adds the ``(cherry picked from
          ...)`` line to your commit message.

.. admonition:: Rationale
   :class: tip

   Git does not actually store any meta data about Git cherry-picks in
   the commit.  Having a standardized text line containing the source
   Git commit hash in the commit messages helps the Open MPI
   development community track where commits came from on release
   branches, and therefore allows us to check whether all relevant
   commits have been ported to a given release branch.

Once your commits are ready and pushed up to your fork, make a PR to
the target release branch.

.. warning:: A GitHub PR CI job checks all commits on release branches
             for the ``(cherry picked from...)`` line. It will also
             ensure that the Git hash cited in that line actually
             exists on the ``main`` branch.

             This check ensures that commits are not made to release
             branches before their corresponding ``main`` PR was
             merged.

All this being said, sometimes there is a need for a non-cherry-picked
commit on a release branch. E.g., sometimes a release branch has
diverged so much that the bug no longer exists on ``main``.  It would
therefore not make sense |mdash| or even be impossible |mdash| to
commit the bug fix in question to ``main``.

In such cases, make a regular PR to the target branch (with commits
that do *not* include ``(cherry picked from ...)`` lines).  In the PR
description, add a line with the following token:

.. code:: text

   bot:notacherrypick

This tells the GitHub CI job that this PR contains commits that are
not cherry-picked from ``main``.

.. warning:: ``bot:notacherrypick`` should only be used when
             absolutely necessary.  It is not a license to avoid
             the process of PR'ing to ``main`` first.

CI (testing)
------------

The Open MPI community generally runs two flavors of testing:

#. A bunch of tests on each PR (Continuous Integration / CI).  These
   tests are a mixture of GitHub Actions and other CI systems (e.g.,
   Jenkins).  Examples include (but are not limited to):

   * Check each Git commit for bozo email addresses
   * Check that each Git commit contains a ``Signed-off-by`` line
   * Check that commits on release branches contain a cherry-pick
     notice
   * Build and publish the docs
   * Build Open MPI in a variety of environments and run sanity tests
     with that installation

#. Daily testing via the MPI Testing Tool (MTT).

   * These are generally tests that take much longer to run than on a
     per-PR basis.  `A "nightly snapshot" tarball
     <https://www.open-mpi.org/nightly/>`_ is created for ``main`` and
     each relevant release branch.
   * MTT tests are run with this snapshot tarball so that all
     organizations are testing with the same snapshots.
   * `Results are available here <https://mtt.open-mpi.org/>`_.