From: Bill Wendling This document collects information about successfully releasing LLVM to the
-public. It is the release manager's guide to ensuring that a high quality build
-of LLVM is released. Mostly, it's just a bunch of reminders of things to do at
-release time so we don't inadvertently ship something that is utility
-deficient.
-There are three main tasks for building a release of LLVM:
-
+ This document collects information about successfully releasing LLVM to the
+ public. It is the release manager's guide to ensuring that a high quality
+ build of LLVM is released. Mostly, it's just a bunch of reminders of things to
+ do at release time so we don't inadvertently ship something that is utility
+ deficient.
+
+ There are three main tasks for building a release of LLVM:
+
-
-
+
+
+
-Merge any work done on branches intended for release into mainline. Finish and -commit all new features or bug fixes that are scheduled to go into the release. -Work that is not to be incorporated into the release should not be merged from -branchs or commited from developer's working directories. -
- --From this point until the release branch is created, developers should -not -commit changes to the llvm and llvm-gcc CVS repositories unless it is a bug -fix for the release. -
++ Merge any work done on branches intended for release into mainline. Finish and + commit all new features or bug fixes that are scheduled to go into the + release. Work that is not to be incorporated into the release should not be + merged from branchs or commited from developer's working directories. +
+ ++ From this point until the release branch is created, developers should + not commit changes to the llvm and llvm-gcc + Subversion repositories unless it is a bug fix for the release. +
Rebuild the LibDeps.txt target in utils/llvm-config. This +
+ Rebuild the LibDeps.txt target in utils/llvm-config. This makes sure that the llvm-config utility remains relevant for the - release, reflecting any changes in the library dependencies.
+ release, reflecting any changes in the library dependencies. +Use the nightly test reports and 'make check' (deja-gnu based tests) to @@ -118,59 +120,74 @@ fix for the release.
Tag and branch the CVS HEAD using the following procedure:
+Tag and branch the Subversion HEAD using the following procedure:
Request all developers to refrain from committing. Offenders get commit + rights taken away (temporarily).
The Release Manager updates his/her llvm, llvm-test, + and llvm-gcc source trees with the latest sources from mainline + Subversion. The Release Manager may want to consider using a new working + directory for this to keep current uncommitted work separate from release + work.
- cvs tag ROOT_RELEASE_XX
-
The Release Manager tags his/her llvm, llvm-test, and + llvm-gcc working directories with "RELEASE_XX" where + XX is the major and minor release numbers. So, for Release 1.2, + XX=12 and for Release 1.10, XX=110.
+ ++svn copy https://llvm.org/svn/llvm-project/llvm/trunk \ + https://llvm.org/svn/llvm-project/llvm/tags/RELEASE_XX +svn copy https://llvm.org/svn/llvm-project/llvm-gcc-4.0/trunk \ + https://llvm.org/svn/llvm-project/llvm-gcc-4.0/tags/RELEASE_XX +svn copy https://llvm.org/svn/llvm-project/test-suite/trunk \ + https://llvm.org/svn/llvm-project/test-suite/tags/RELEASE_XX ++
- cvs tag -b -r ROOT_RELEASE_XX release_XX -
+Immediately create Subversion branches based on the + RELEASE_XX tag. The tag should be + "release_XX" (where XX matches that used for the + RELEASE_XX tag). This is where the release distribution + will be created.
+ ++svn copy https://llvm.org/svn/llvm-project/llvm/tags/RELEASE_XX \ + https://llvm.org/svn/llvm-project/llvm/branches/release_XX +svn copy https://llvm.org/svn/llvm-project/llvm-gcc-4.0/tags/RELEASE_XX \ + https://llvm.org/svn/llvm-project/llvm-gcc-4.0/branches/release_XX +svn copy https://llvm.org/svn/llvm-project/test-suite/tags/RELEASE_XX \ + https://llvm.org/svn/llvm-project/test-suite/branches/release_XX ++
Advise developers they can work on Subversion HEAD again.
The Release Manager and any developers working on the release should switch to the release branch (as all changes to the release will now be done in the branch). The easiest way to do this is to grab another working copy - using the following commands: - -
- cvs -d <CVS Repository> co -r release_XX llvm
- cvs -d <CVS Repository> co -r release_XX llvm-test
- cvs -d <CVS Repository> co -r release_XX llvm-gcc
-
+svn co https://llvm.org/svn/llvm-project/llvm/branches/release_XX +svn co https://llvm.org/svn/llvm-project/llvm-gcc-4.0/branches/release_XX +svn co https://llvm.org/svn/llvm-project/test-suite/branches/release_XX ++
- After creating the llvm release branch, update the release branch's autoconf/configure.ac - version from X.Xsvn to just X.X. Update it on mainline as well to be the next version - (X.X+1svn). + After creating the LLVM release branch, update the release branchs' + autoconf/configure.ac version from X.Xsvn to just X.X. Update it on mainline + as well to be the next version (X.X+1svn).
-Run make check and ensure there are no unexpected failures. If - there are, resolve the failures, commit them back into the release branch, - and restart testing by re-building LLVM. +
+ Run make check and ensure there are no unexpected failures. If there + are, resolve the failures, commit them back into the release branch, and + restart testing by re-building LLVM.
- Ensure that 'make check' passes on all platforms for all targets. If certain - failures cannot be resolved before release time, determine if marking them - XFAIL is appropriate. If not, fix the bug and go back. The test suite must - complete with "0 unexpected failures" for release. + Ensure that 'make check' passes on all platforms for all targets. If + certain failures cannot be resolved before release time, determine if marking + them XFAIL is appropriate. If not, fix the bug and go back. The test + suite must complete with "0 unexpected failures" for release.
Run the llvm-test suite and ensure there are no unacceptable failures. - If there are, resolve the failures and go back to - re-building LLVM. The test suite - should be run in Nightly Test mode. All tests must pass. +
+ Run the llvm-test suite and ensure there are no unacceptable + failures. If there are, resolve the failures and go back to re-building LLVM. The test suite should be run in Nightly + Test mode. All tests must pass. +
Create source distributions for LLVM, LLVM GCC, and the LLVM Test Suite by - exporting the source - from CVS and archiving it. This can be done with the following commands: + exporting the source from Subversion and archiving it. This can be done with + the following commands:
-
- cvs -d <CVS Repository> export -r release_XX llvm
- cvs -d <CVS Repository> export -r release_XX llvm-test
- cvs -d <CVS Repository> export -r release_XX llvm-gcc
- mkdir cfrontend; mv llvm-gcc cfrontend/src
- tar -cvf - llvm | gzip > llvm-X.X.tar.gz
- tar -cvf - llvm-test | gzip > llvm-test-X.X.tar.gz
- tar -cvf - cfrontend/src | gzip > cfrontend-X.X.source.tar.gz
-
+svn export https://llvm.org/svn/llvm-project/llvm/branches/release_XX llvm +svn export https://llvm.org/svn/llvm-project/llvm-gcc-4.0/branches/release_XX llvm-gcc +svn export https://llvm.org/svn/llvm-project/test-suite/branches/release_XX llvm-test +mkdir cfrontend; mv llvm-gcc cfrontend/src +tar -cvf - llvm | gzip > llvm-X.X.tar.gz +tar -cvf - llvm-test | gzip > llvm-test-X.X.tar.gz +tar -cvf - cfrontend/src | gzip > cfrontend-X.X.source.tar.gz ++
You can, optionally, create source and binary RPM packages for LLVM. These - may make it easier to get LLVM into a distribution. This can be done with - the following commands:
-- make dist # Build the distribution source tarball - make dist-check # Check that the source tarball can build itself. - cp llvm-M.m.tar.gz /usr/src/redhat/SOURCES # Required by rpmbuild - make srpm # for source rpm - make rpm # for binary rpm --
First, use "make dist" to simply build the distribution. Any - failures need to be corrected (on the branch). Once "make dist" can be - successful, do "make dist-check". This target will do the same thing as the - 'dist' target but also test that distribution to make sure it can build itself - and runs "make check" as well. This ensures that needed files are not - missing and that the src tarball can be successfully unpacked, built, - installed, and cleaned. Once you have a reliable tarball, you need to copy - it to the /usr/src/redhat/SOURCES directory which is a requirement of the - rpmbuild tool. The last two "make" invocations just run rpmbuild to build - either a source (srpm) or binary (rpm) RPM package.
++ You can, optionally, create source and binary RPM packages for LLVM. These may + make it easier to get LLVM into a distribution. This can be done with the + following commands: +
+ ++make dist # Build the distribution source tarball +make dist-check # Check that the source tarball can build itself. +cp llvm-M.m.tar.gz /usr/src/redhat/SOURCES # Required by rpmbuild +make srpm # for source rpm +make rpm # for binary rpm ++
+ First, use make dist to simply build the distribution. Any failures + need to be corrected (on the branch). Once make dist can be + successful, do make dist-check. This target will do the same thing as + the 'dist' target but also test that distribution to make sure it can build + itself and runs make check as well. This ensures that needed files + are not missing and that the src tarball can be successfully unpacked, built, + installed, and cleaned. Once you have a reliable tarball, you need to copy it + to the /usr/src/redhat/SOURCES directory which is a requirement of + the rpmbuild tool. The last two make invocations just run rpmbuild to + build either a source (srpm) or binary (rpm) RPM package. +
- Check out the website module from Subversion. Create a new - subdirectory X.X in the releases directory. Place the llvm, llvm-test, - llvm-gcc source, and llvm-gcc - binaries in this new directory. Copy the llvm/docs and LICENSE.txt files - into this new directory. Update the releases/download.html file with the new release. - Update the releases/index.html with the new release. Finally, update the main page ( - index.html and sidebar) to point to the new release and release announcement. Make - sure this all gets commited back into cvs. + Check out the website module from Subversion. Create a new + subdirectory X.X in the releases directory. Place the llvm, + llvm-test, llvm-gcc source, and llvm-gcc binaries + in this new directory. Copy the llvm/docs and LICENSE.txt + files into this new directory. Update the releases/download.html file + with the new release. Update the releases/index.html with the new + release. Finally, update the main page (index.html and sidebar) to + point to the new release and release announcement. Make sure this all gets + commited back into Subversion.
The first thing you need to understand is that there are multiple make -targets to support this feature. Here's an overview, we'll delve into the -details later.
-Okay, that's the basic functionality. When making a release, we want to -ensure that the tree you build the distribution from passes -dist-check. Beyond fixing the usual bugs, there is generally one -impediment to making the release in this fashion: missing files. The -dist-check process guards against that possibility. It will either -fail and that failure will indicate what's missing, or it will succeed -meaning that it has proved that the tarballs can actually succeed in -building LLVM correctly and that it passes make check.
++ The first thing you need to understand is that there are multiple make targets + to support this feature. Here's an overview, we'll delve into the details + later. +
+ ++ Okay, that's the basic functionality. When making a release, we want to ensure + that the tree you build the distribution from passes + dist-check. Beyond fixing the usual bugs, there is generally one + impediment to making the release in this fashion: missing files. The + dist-check process guards against that possibility. It will either + fail and that failure will indicate what's missing, or it will succeed meaning + that it has proved that the tarballs can actually succeed in building LLVM + correctly and that it passes make check. +
+This target builds the distribution directory which is the directory from -which the tarballs are generated. The distribution directory has the same -name as the release, e.g. LLVM-1.7). This target goes through the following -process: -
To control the process of making the distribution directory correctly, -each Makefile can utilize two features:
-You will see various messages if things go wrong:
-+ This target builds the distribution directory which is the directory from + which the tarballs are generated. The distribution directory has the same + name as the release, e.g. LLVM-1.7). This target goes through the following + process: +
+ ++ To control the process of making the distribution directory correctly, each + Makefile can utilize two features: +
+ ++ You will see various messages if things go wrong: +
+ +This target does exactly what distdir target does, but also -includes assembling the tarballs. There are actually four related targets -here:
+
+ This target does exactly what distdir target does, but also includes + assembling the tarballs. There are actually four related targets here: +
+This target checks the distribution. The basic idea is that it unpacks the -distribution tarball and ensures that it can build. It takes the following -actions:
-If it can pass all that, the distribution will be deemed distribution -worth y and you will see:
-
===== LLVM-1.7.tar.gz Ready For Distribution =====-
This means the tarball should then be tested on other platforms and have the -nightly test run against it. If those all pass, THEN it is ready for -distribution.
--A note about disk space: using dist-check will easily triple the -amount of disk space your build tree is using. You might want to check -available space before you begin.
++ This target checks the distribution. The basic idea is that it unpacks the + distribution tarball and ensures that it can build. It takes the following + actions: +
+ ++ If it can pass all that, the distribution will be deemed distribution worth y + and you will see: +
+ +===== LLVM-1.7.tar.gz Ready For Distribution =====+ +
+ This means the tarball should then be tested on other platforms and have the + nightly test run against it. If those all pass, THEN it is ready for + distribution. +
+ ++ A note about disk space: using dist-check will easily triple the + amount of disk space your build tree is using. You might want to check + available space before you begin. +
+In addition to doing a normal clean, this target will clean up the -files and directories created by the distribution targets. In particular the -distribution directory (LLVM-X.X), check directory -(_distcheckdir), and the various tarballs will be removed. You do -this after the release has shipped and you no longer need this stuff in your -build tree.
++ In addition to doing a normal clean, this target will clean up the + files and directories created by the distribution targets. In particular the + distribution directory (LLVM-X.X), check directory + (_distcheckdir), and the various tarballs will be removed. You do + this after the release has shipped and you no longer need this stuff in your + build tree. +