dev:release_process:evergreen:how_to_build
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
dev:release_process:evergreen:how_to_build [2024/02/02 13:52] – [Generate release docs] sandbergja | dev:release_process:evergreen:how_to_build [2025/02/10 16:53] (current) – [Helpful videos] aneiman | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ===== Rolling an Evergreen Release ===== | + | ====== Rolling an Evergreen Release |
**¡This is a work in progress. | **¡This is a work in progress. | ||
+ | ==== Helpful videos ==== | ||
+ | |||
+ | These recordings show various release building activities. | ||
+ | |||
+ | * May 2023 [[https:// | ||
+ | * Nov 2023 [[https:// | ||
+ | * Dec 2023 [[https:// | ||
+ | * Feb 2025 [[https:// | ||
==== Prerequisites ==== | ==== Prerequisites ==== | ||
Make sure you are in an environment with your git ssh keys, since you will need to be pushing commits to the git server. | Make sure you are in an environment with your git ssh keys, since you will need to be pushing commits to the git server. | ||
+ | |||
+ | Make sure that you have OpenSRF installed in your environment. | ||
+ | |||
+ | To upload translations to Launchpad, you will also need to register an ssh key with Launchpad. See the [[https:// | ||
+ | |||
+ | See [[:: | ||
==== Install packager dependencies ==== | ==== Install packager dependencies ==== | ||
Line 14: | Line 28: | ||
<code bash> | <code bash> | ||
# sudo make -f Open-ILS/ | # sudo make -f Open-ILS/ | ||
- | $ sudo make -f Open-ILS/ | + | $ sudo make -f Open-ILS/ |
</ | </ | ||
- | [Note that your Ubuntu version may be something other than 'trusty'; substitute | + | [Note that your Ubuntu version may be something other than 'jammy', or you may be using a different OS altogether. Substitute |
+ | |||
+ | ==== Confirm git credentials and username/ | ||
+ | |||
+ | The following steps will require you to commit your work and push to a remote git repository. | ||
+ | |||
+ | If you are using a docker dev container, You can commit from inside the container, but push from the host machine -- if you choose this approach, you should make sure the first two commands work from within the container, and the last two commands work from your host machine. | ||
+ | ^ Setting | ||
+ | | Your user name | Run the command: '' | ||
+ | | Your email address | ||
+ | | The git remote you intend to push to (the Evergreen repo if you are a committer, the working/ | ||
+ | | Your SSH key to connect to the git remote | ||
==== Update relator codes (requires commit bit) ==== | ==== Update relator codes (requires commit bit) ==== | ||
Line 33: | Line 58: | ||
==== Prepare release notes (for major version bumps only) ==== | ==== Prepare release notes (for major version bumps only) ==== | ||
- | => See also the [[evergreen-docs: | + | See also: [[evergreen-docs: |
- | * Cut a new release branch (such as rel_3_7): | + | Cut a new release branch (such as rel_3_13): |
- | < | + | |
- | git checkout -b rel_3_7 main | + | |
- | </ | + | |
- | * Update the version in the antora configuration | + | < |
- | <code bash> | + | Create release notes: |
- | $ vi docs/ | + | |
- | </ | + | |
- | edit ' | + | First, the RELEASE_NOTE_NEXT piece. |
- | * Create release notes | + | <code bash>$ cd docs/ |
+ | $ ./ | ||
- | <code bash> | + | After that script runs, you can remove 3.13-specific files from docs/ |
- | $ cd docs/ | + | |
- | $ ./create_release_notes.sh -r 2_8 | + | |
- | </ | + | |
- | * Remove 2.8-specific files from docs/ | ||
- | * Running the following in the docs/ | ||
<code bash> | <code bash> | ||
$ find . -mindepth 2 -name ' | $ find . -mindepth 2 -name ' | ||
$ find . -mindepth 2 -name ' | $ find . -mindepth 2 -name ' | ||
+ | $ echo "" | ||
</ | </ | ||
- | | + | Then, the extract release notes from the commit piece. |
+ | |||
+ | Next, use the `extract_release_notes_from_commits.pl` script to get the rest of the release notes. | ||
+ | |||
+ | * The script parses commits to pull the following: Release notes for bugs that use the < | ||
+ | * See [[https:// | ||
+ | |||
+ | <code bash> | ||
+ | $ ../ | ||
+ | $ ../ | ||
+ | </ | ||
+ | |||
+ | * Integrate the results into the release notes. | ||
+ | * Make sure all directories in RELEASE_NOTES_NEXT are empty after the two scripts are run. If they are not, remove any lingering adoc files. | ||
+ | | ||
+ | * < | ||
For an alpha or beta release, this rough process is probably enough. | For an alpha or beta release, this rough process is probably enough. | ||
+ | Once you are at the .0 release, update line 3 of the antora.yml configuration file in your release branch so it reads ' | ||
+ | |||
+ | <code bash>$ vi docs/ | ||
+ | |||
+ | Then, update the version in the site.yml file on main branch to include rel_3_13 on line 9. | ||
+ | |||
+ | <code bash>$ vi docs/ | ||
+ | |||
+ | ==== Translations, | ||
+ | |||
+ | This needs to be done once during the release cycle, typically at alpha or beta | ||
+ | |||
+ | Set up the new series branch using the instructions here: [[i18n: | ||
==== Translations, | ==== Translations, | ||
- | * During each release starting with beta, get the latest template changes and apply them to the main branch you are working from in origin (main/rel_3_1/ | + | During each release starting with beta, get the latest template changes and apply them to the main branch you are working from in origin (main/rel_3_13/ |
- | * Update pot in Evergreen <code bash>$ cd build/i18n && make newpot</ | + | |
- | * From the Evergreen directory, run the python script to commit any changes that do more than modify metadata <code bash> | + | |
+ | * From the Evergreen directory, run the python script to commit any changes that do more than modify metadata <code bash> | ||
==== Translations, | ==== Translations, | ||
- | * Export strings for the Angular staff client and import them into POEditor, following | + | |
+ | Export strings for the Angular staff client and import them into POEditor, following | ||
==== Setting up your git branch ==== | ==== Setting up your git branch ==== | ||
- | * Create a local working branch for the release. | + | Create a local working branch for the release. |
<code bash>$ git checkout -b tags/ | <code bash>$ git checkout -b tags/ | ||
Line 91: | Line 137: | ||
# Clone the repository if necessary | # Clone the repository if necessary | ||
$ bzr branch lp: | $ bzr branch lp: | ||
- | $ bzr branch lp: | + | $ bzr branch lp: |
# If already cloned, simply pull in the latest changes | # If already cloned, simply pull in the latest changes | ||
$ cd translation-export-SERIES; | $ cd translation-export-SERIES; | ||
Line 97: | Line 143: | ||
* NOTE: See here to find the correct translation branch for the version you are building: https:// | * NOTE: See here to find the correct translation branch for the version you are building: https:// | ||
+ | * It will give you an error "You have not informed bzr of your Launchpad ID, and you must do this to write to Launchpad or access private data." | ||
* Then, sync translated files with Evergreen. Update PO files in the appropriate branch in origin: | * Then, sync translated files with Evergreen. Update PO files in the appropriate branch in origin: | ||
<code bash> | <code bash> | ||
- | # series here is " | + | # series here is " |
# that you are building | # that you are building | ||
$ Evergreen/ | $ Evergreen/ | ||
Line 116: | Line 163: | ||
$ git add -A Open-ILS/ | $ git add -A Open-ILS/ | ||
$ git commit -asm " | $ git commit -asm " | ||
- | </ | ||
- | |||
- | ==== Other version number changes ==== | ||
- | |||
- | * Edit ./ | ||
- | <code perl> | ||
- | our $VERSION = ' | ||
- | </ | ||
- | |||
- | * NOTE: The version string is two digits for each level after the decimal, so for example " | ||
- | |||
- | * Commit the version change | ||
- | |||
- | <code bash> | ||
- | $ git commit -asm " | ||
</ | </ | ||
==== Update server upgrade documentation ==== | ==== Update server upgrade documentation ==== | ||
- | * Replace release version placeholders with the actual version numbers in docs/ | + | * Replace release version placeholders |
- | * If you are creating a beta or rc, add a hyphen and then beta or rc. For example, 3.12-rc. | + | * In vim, '': |
+ | * If you are creating a beta or rc, add a hyphen and then beta or rc. For example, 3.13-rc. | ||
* Replace the previous version placeholder (e.g. 3.X.W) with the last release number. | * Replace the previous version placeholder (e.g. 3.X.W) with the last release number. | ||
+ | * In vim, '': | ||
* Double check the correct minimum version of OpenSRF. | * Double check the correct minimum version of OpenSRF. | ||
* If the minimum version of OpenSRF has changed, also update the OpenSRF version number in docs/ | * If the minimum version of OpenSRF has changed, also update the OpenSRF version number in docs/ | ||
Line 143: | Line 177: | ||
==== Run the release builder script ==== | ==== Run the release builder script ==== | ||
- | * Run the release builder script | + | Run the release builder script: |
<code bash> | <code bash> | ||
$ export PATH=$PATH:/ | $ export PATH=$PATH:/ | ||
- | $ build/ | + | $ build/ |
</ | </ | ||
- | * Additional notes on make_release options: | + | Additional notes on make_release options: |
- | * Use the -v flag when your branch name does not match the normal pattern, otherwise auto-detect works | + | * If you are building beta, use -beta for the first version value, for example: 3.13-beta. |
- | * Use the -j flag to point at wherever your OpenSRF javascript lib source is, if not already installed | + | * Use the highest numbered previous version for the second version value. |
- | * -j ~/ | + | |
- | * The -f flag sets the branch " | + | * For a .0 release, the script should start from the highest point release in the previous series: <code bash>$ build/ |
- | * You can add the -r option to edit the upgrade script before it goes into the tarball. This may be necessary if tables that get altered in the upgrade scripts also have updates or inserts of new data. | + | * For a point release, the script should start from the previous point release in the series: <code bash>$ build/ |
- | * Enhanced Concerto Dataset upgrade *experimental | + | |
- | * This is optional, but if enough of the database tables have changed, it's a good idea. | + | * Use the -j flag to point at wherever your OpenSRF javascript lib source is, if not already installed |
- | * -H < | + | * -j ~/ |
- | * -U < | + | * The -f flag sets the branch " |
- | * -P < | + | * You can add the -r option to edit the upgrade script before it goes into the tarball. This may be necessary if tables that get altered in the upgrade scripts also have updates or inserts of new data. |
- | * -O < | + | * Enhanced Concerto Dataset upgrade *experimental |
- | * Omitting -H will cause make_release to skip the enhanced concerto upgrade steps. | + | * This is optional, but if enough of the database tables have changed, it's a good idea. |
+ | * -H < | ||
+ | * -U < | ||
+ | * -P < | ||
+ | * -O < | ||
+ | * Omitting -H will cause make_release to skip the enhanced concerto upgrade steps. | ||
Note that you will get a lot of warnings related to the po translation files. | Note that you will get a lot of warnings related to the po translation files. | ||
Line 171: | Line 210: | ||
<code bash> | <code bash> | ||
- | # copy README and docs/ | + | # copy README and release notes to ../release/ |
- | $ cp README ../release/README_2_8 | + | $ export RELEASE=3_12_0 # Increment for later release, 3_12_1 for example. |
- | $ cp docs/RELEASE_NOTES_2_8.adoc ../release/ | + | $ cp README ../release/README_$RELEASE |
+ | $ cp docs/RELEASE_NOTES_$RELEASE.adoc ../release/ | ||
$ cd ../release/ | $ cd ../release/ | ||
# in ../release/ | # in ../release/ | ||
- | $ asciidoc -a toc -a numbered | + | $ asciidoc -a toc -a numbered |
- | $ asciidoc -a toc -a numbered | + | $ asciidoc -a toc -a numbered |
# delete the originals | # delete the originals | ||
- | $ rm README_2_8 | + | $ rm README_$RELEASE RELEASE_NOTES_$RELEASE.adoc |
- | $ rm RELEASE_NOTES_2_8.adoc | + | |
</ | </ | ||
- | ==== Upload to web server (requires | + | ==== Upload to web server (requires access |
- | Move the release files into the correct download directories: | + | Move the release files into the correct download directories |
* Previews / alphas / betas / release candidates go in ''/ | * Previews / alphas / betas / release candidates go in ''/ | ||
- | * Final releases | + | * Final releases go in ''/ |
* Install docs / README_* go in ''/ | * Install docs / README_* go in ''/ | ||
* Release notes go in ''/ | * Release notes go in ''/ | ||
+ | Because the release notes document is cumulative for each release series, a symbolic link exists for each release series so that (e.g.) '' | ||
+ | |||
+ | When updating the downloads page to the website, the URL should use the symbolic link, not the release notes for the specific release, e.g., '' | ||
==== " | ==== " | ||
<code bash> | <code bash> | ||
- | git push origin | + | git push origin |
</ | </ | ||
Line 203: | Line 245: | ||
If doing a final release, you will need to copy the upgrade script you created to main and your current rel_x_y branch. | If doing a final release, you will need to copy the upgrade script you created to main and your current rel_x_y branch. | ||
+ | For example, if you just created a release 3.12.6 and were on the branch tags/ | ||
+ | |||
+ | <code bash> | ||
+ | git checkout rel_3_12 | ||
+ | git checkout tags/ | ||
+ | git commit -sm " | ||
+ | git checkout main | ||
+ | git cherry-pick rel_3_12 | ||
+ | </ | ||
==== Announcing and recording the release ==== | ==== Announcing and recording the release ==== | ||
* Update evergreen_history.txt file in history repo with release dates. | * Update evergreen_history.txt file in history repo with release dates. | ||
* Release team / outreach committee make announcements following [[https:// | * Release team / outreach committee make announcements following [[https:// | ||
dev/release_process/evergreen/how_to_build.1706899949.txt.gz · Last modified: 2024/02/02 13:52 by sandbergja