-
Notifications
You must be signed in to change notification settings - Fork 934
Closed
Description
Make a perfect tarball
- Update the major,minor,release,greek version numbers in
VERSION - Update the shared library version number(s) in
VERSIONper the GNU Libtool shared library version number rules (pro tip: you probably want to usegit log --stat --no-merges last_release_tag..HEAD) - Update all documentation files (especially including dates and version numbers), including:
-
README: all relevant updates, build options, etc. Be sure to update the date near the top of the file. -
AUTHORS: viacontrib/dist/make-authors.pl(and commit the result) -
NEWS: List all user-noticable changes -
LICENSE: Update the years in the copyright notices - ...any other doc files that may not be included in this list
-
- Make final
openmpi-x.y.z.tar.gzandopenmpi-x.y.z.bz2tarballs using the make_dist_tarball script in contrib/dist
Ensure that the tarball actually works
- Ensure openmpi
make distcheckpasses - Build and install Open MPI (from a tarball)
- Check that the version number and release date is correct in the installed man pages
- Build and run the examples in the tarball
- MPI / C bindings
- MPI / C++ bindings
- MPI / All three Fortran bindings
- OSHMEM / C bindings (don't run if not using ikrit)
- OSHMEM / Fortran bindings (don't run if not using ikrit)
- Build and install the IBM tests from the
ompi-testsrepo- Ensure the tests pass with at least 1 or 2 different MPI transports
- With a prior release tarball from the same release series:
- Build and install Open MPI
- Build all the examples in the tarball (against the prior OMPI release)
- Build the IBM tests from the
ompi-testsrepo (against the prior OMPI release) -
rm -rfthe installation of the prior release - Set
LD_LIBRARY_PATHto point to the installation of the new Open MPI - Run examples, make sure they still work
- Run IBM tests, make sure they still work
Test packaging
- Ensure that building an Open MPI source RPM works on a RHEL system
- Ensure that building the Open MPI binary RPM works on a RHEL system (note had to do hacking on buildrpm.sh script and it doesn't report correct information about where rpms are installed, at least not on my RHEL7.2 system running as root)
- Install both RPMs on an RHEL system
- Test building and running the IBM tests against the RPM-installed Open MPI
- Test building a MPI-based program with the output from
pkg-configwith the RPM-installedopenmpi.pc - Test that uninstall of the rpm works
Do the release
-
git tag -a vX.Y.Zon the appropriate Open MPI release branch -
git push --tags --dry-runto the ompi repo. Remove--dry-runwhen you're convinced it is correct. - Publish the tarballs on the Open MPI web site
- If Z is 0 (i.e., this is the first release in a series):
-
cp -r software/ompi/v2.0 software/ompi/vRELEASE(where RELEASE is X.Y) - Edit each file in the new directory to update for the new release
- Remove all prior tarballs from the
downloadssubdirectory
-
- Add the tarball + SRPM files to the appropriate
ompi-wwwdirectory (e.g.,software/ompi/v2.0/downloads/). - Update the
md5sums.txtandsha1sums.txtfile in that directory (e.g.,md5sum openmpi* > md5sums.txt) - Update the
latest_snapshot.txtfile in that directory - Update
version.incin one directory up - Update
index.php(in the same directory asversion.inc) and add the prior release to the$versions[]array so that it shows up in the older releases list - Update
timeline-graph.php(in the same directory asversion.inc) to add a date stamp to the timeline graph for the release of this version (i.e., callmilestone()like it is for the other releases) - Update the top-level
index.phpwith a news bullet about this release. It is likely possible to guess the correct URL that will be used to web archive the announcement mail sent to [email protected] - Git commit and push all these changes
- If Z is 0 (i.e., this is the first release in a series):
- Publish the newest version of the man pages
- Download and un-tar a new Open MPI release tarball (no need to config/rebuild/install it)
- Get a git clone of the Open MPI repo, checkout the branch that you are releasing
- Check out the vA.B.C release tag that you are releasing
- In the top-level directory of the expanded tarball, run
contrib/dist/make-html-man-pages.plfrom the git clone checked out at the vA.B.C release tag (this file is not in the release tarball)- This will take a little time because it will configure and build Open MPI, and then convert all the man pages to HTML.
- You can ignore warnings about the "" macro not being recognized
- In the
ompi-wwwrepo:-
git rm -rf doc/vRELEASEand commit -
mkdir doc/vRELEASE -
cp -rp YOUR_BUILD_TREE/man-page-generator/php/* . -
git add doc/vRELEASE - If this is a new release series update
doc/index.phpto list the new directory and git add it -
git commit -s
-
- Git push all web site changes
- Verify the live web site to ensure all changes are both present and correct
- Close the relevant Github milestone in
open-mpi/ompi - Re-target all still-open v2.0.2 issues for v2.0.3 or v2.1.0, as appropriate
- Ensure that new Github milestones exist in
open-mpi/ompifor the next release - Update the Open MPI version number in
VERSIONto<NEXT_VERSION>and getgreektoa1 - Send an email to the
[email protected]mailing list announcing the release - Verify that the URL used to link to the release announcement (to
[email protected]) is correct on the front Open MPI web page.
jjhursey