OpenOCD
|
This page provides an introduction to the OpenOCD Release Processes:
release.sh
script.The OpenOCD maintainers produce releases periodically for many reasons. This section provides the key reasons for making releases on a regular basis and why a set of release processes should be used to produce them.
At any time, source archives can be produced by running make dist
in the OpenOCD project tree. With the 0.2.0 release, this command will package the tree into several popular archive formats: openocd-<version>.{tar.gz,tar.bz2,zip}
. If produced properly, these files are suitable for release to the public.
When properly versioned and released for users, these archives present several important advantages compared to using the source repository (including snapshots downloaded from that repository using gitweb):
Hopefully, this shows several good reasons to produce regular releases, but the release processes were developed with some additional design goals in mind. Specifically, the releases processes should have the following properties:
The current release processes are documented in the following sections. They attempt to meet these design goals, but improvements may still need to be made.
Users can display the OpenOCD version string in at least two ways. The command line openocd -v
invocation displays it; as does the Tcl version
command.
Labels for released versions look like 0.3.0, or 0.3.0-rc1 for a preliminary release. Non-released (developer) versions look like 0.3.0-dev, or 0.3.0-rc1-dev. In all cases, additional tags may be appended to those base release version labels.
The tools/release/version.sh
script is used to manipulate version IDs found in the source tree.
The OpenOCD version string is composed of three numeric components separated by two decimal points: x.y.z
, where x
is the major version number, y
is the minor number, and z
is the micro. For any bug-fix release, the micro version number will be non-zero (z > 0
). For a minor release, the micro version number will be zero (z = 0
). For a major releases, the minor version will also be zero (y = 0, z = 0
).
After these required numeric components, release version strings may contain tags such as -rc1 or -rc2. These 'rc' tags indicate "release candidate" versions of the package. Like major/minor/micro numbers, these are updated as part of the release process.
The release process includes version number manipulations to the tree being released, ensuring that all numbers are incremented (or rolled over) at the right time and in the proper locations of the repository. One of those manipulations creates a repository tag matching that release's version label.
Distributors of patched versions of OpenOCD are encouraged to extend the version string with a unique version tag when producing external releases, as this helps to identify your particular distribution series. Knowing that a release has such patches can be essential to tracking down and fixing bugs.
Packager version tags should always be suffixes to the version code from the OpenOCD project, signifying modifications to the original code base. Each packager release should have a unique version.
For example, the following command will add a 'foo' tag to the configure.ac script of a local copy of the source tree, giving a version label like 0.3.0-foo:
This command will modify the configure.ac script in your working copy only. After running the bootstrap
sequence, the tree can be patched and used to produce your own derived versions. You might check that change into a private branch of your git tree, along with the other patches you are providing.
You can also "bump" those tags (so "foo1" becomes "foo2" etc) each time a derived package is released, incrementing the tag's version to facilitate tracking the changes you have distributed.
Of course, any patches in your branches must be provided to your customers, and be in conformance with the GPL. In most cases you should also work to merge your improvements to the mainline tree.
Everything except formal releases should have the tag -dev in their version number. This helps developers identify reports created from non-release versions, and it can be detected and manipulated by the release script. Specifically, this tag will be removed and re-added during the release process; it should never be manipulated by developers in submitted patches.
Versions built from developer trees may have additional tags. Trees built from git snapshots have snapshot tags. When built from a "live" git tree, tags specify specific git revisions:
0.3.0-rc1-dev-00015-gf37c9b8-dirty
indicates a development tree based on git revision f37c9b8 (a truncated version of a SHA1 hash) with some non-git patches applied (the dirty tag). This information can be useful when tracking down bugs. (Note that at this writing, the tags do not directly correspond to git describe
output. The hash ID can be used with git show
, but the relevant repository tag isn't 0.3.0-rc1-dev; this might change in the future.)
OpenOCD archive releases will be produced by an individual filling the role of Release Manager, hereafter abbreviated as RM. This individual determines the schedule and executes the release processes for the community.
Each release requires one individual to fulfill the RM role; however, graceful transitions of this authority may take place at any time. The current RM may transfer their authority to another contributor in a post to the OpenOCD development mailing list. Such delegation of authority must be approved by the individual that will receive it and the community of maintainers. Initial arrangements with the new RM should be made off-list, as not every contributor wants these responsibilities.
In addition to the actual process of producing the releases, the RM is responsible for keeping the community informed of all progress through the release cycle(s) being managed. The RM is responsible for managing the changes to the package version, though the release tools should manage the tasks of adding or removing any required development branch tags and incrementing the version.
These responsibilities matter most towards the end of the release cycle, when the RM creates the first RC and all contributors enter a quality-improvement mode. The RM works with other contributors to make sure everyone knows what kinds of fixes should merge, the status of major issues, and the release timetable.
In particular, the RM has the final decision on whether a given bug should block the release.
The OpenOCD release process must be carried out on a periodic basis, so the project can realize the benefits presented in answer to the question, Why Produce Releases?.
Starting with the 0.2.0 release, the OpenOCD project expects to produce new releases every few months. Bug fix releases could be provided more frequently. These release schedule goals may be adjusted in the future, after the project maintainers and distributors receive feedback and experience.
More importantly, the statements made in this section do not create an obligation by any member of the OpenOCD community to produce new releases on regular schedule, now or in the future.
The RM must pro-actively communicate with the community from the beginning of the development cycle through the delivery of the new release. This section presents guidelines for scheduling key points where the community must be informed of changing conditions.
If Tn is the time of release n, then the following schedule might describe some key T0-to-T1 release cycle milestones.
Note that until it happens, any date for T1 is just a goal. Critical bugs prevent releases from happening. We are just beginning to use this window-plus-RCs process, so the lengths of the merge windows versus the RC phase is subject to change. Most projects have RC phases of a month or more.
Some additional supplemental communication will be desirable. The above list omits the step-by-step instructions to daily release management. Individuals performing release management need to have the ability to interact proactively with the community as a whole, anticipating when such interaction will be required and giving ample notification.
The next section explains why the OpenOCD project allows significant flexibility in the part of the development that precedes the release process.
The Release Manager should attempt to follow the guidelines in this document, but the process of scheduling each release milestone should be community driven at the start. Features that don't complete before the merge window closes can be held (perhaps in some branch) until the next merge window opens, rather than delaying the release cycle.
The Release Manager cannot schedule the work that will be done on the project, when it will be submitted, reviewed, and deemed suitable to be committed. That is, the RM cannot act as a priest in a cathedral; OpenOCD uses the bazaar development model. The release schedule must adapt continuously in response to changes in the rate of work. Fewer releases may be required if developers contribute less patches, and more releases may be desirable if the project continues to grow and experience high rates of community contribution. During each cycle, the RM should be tracking the situation and gathering feedback from the community.
The release process is not final; it may need more iterations to work out bugs. While there are release scripts, key steps require community support; the Release Manager isn't the only participant.
The following steps should be followed to produce each release:
the
NEWS file to describe the changes in the releaseNEWS-worthy
contribution, when committed during the merge window. (One part of closing the merge window, by opening the RC phase of the release, is the commitment to hold all further such contributions until the next merge window opens.)configure.ac:
(The tools/release/version.sh
script might help ensure the versions are named properly.):-dev
tag.-rc
tag:configure.ac
(including -rcN where relevant): PACKAGE_VERSION="x.y.z" PACKAGE_TAG="v${PACKAGE_VERSION}" git tag -m "The openocd-${PACKAGE_VERSION} release." "${PACKAGE_TAG}"
configure.ac
... this is used only to produce the release, and all files should already be properly checked out.tools/release.sh package
to produce the source archives. This automatically bootstraps and configures the process.tools/release.sh stage
to create an archives
directory with the release data, including MD5 and SHA1 checksum files.make docs
to create the documentation which will be published.NEWS
file and mark it as the release notes.configure.ac
file:-dev
version tag.NEWS
file as "<code>doc/news/NEWS-${PACKAGE_VERSION}</code>".NEWS
file for the next releaseTo start a bug-fix release branch:
-dev
version tag.The release.sh
script automates some of the steps involved in making releases, simplifying the Release Manager's work.
The release script can be used for two tasks:
Both of these variations make automatic commits and tags in your repository, so you should be sure to run it on a cloned copy before proceeding with a live release.
The release.sh
script recognizes some command-line options that affect its behavior:
–start-rc
indicates that the new development release cycle should start with -rc0
. Without this, the -rc
tag will be omitted, leading to non-monotonic versioning of the in-tree version numbers.–final
indicates that the release should drop the -rc
tag, to going from x.y.z-rcN-dev
to x.y.z.The release.sh
script recognizes some environment variables which affect its behavior:
CONFIG_OPTS
: Passed as options to the configure script.MAKE_OPTS
: Passed as options to the 'make' processes.This section should contain a brief tutorial for using the Release Script to perform release tasks, but the new script needs to be used for 0.3.0.
Improved automated packaging and distribution of OpenOCD requires more patching of the configure script. The final release script should be able to manage most steps of the processes. The steps requiring user input could be guided by an "assistant" that walks the Release Manager through the process from beginning to end, performing basic sanity checks on their various inputs (e.g. the NEWS
blurb).