OTA Connect Developer Guide

Release process

To create a new release of aktualizr and garage-deploy, there are several discrete steps to follow:

1. Update the changelog and other docs

This is normally a good time to update the changelog. Ideally, the changelog should be updated with the new release number before creating the release so that the packaged source code includes the correct information about the release. The easiest way to check the changelog is to review all PRs merged to master since the last release was made and to verify that any important changes that impact the user experience are reflected in the changelog.

There are a few additional documents that should be updated to refer to the new release:

  • The docs README contains a table with links to the doxygen docs for each release.

  • Several pages contains references to the latest release of aktualizr and/or garage-deploy via a variable set in a doc snippet created for this purpose.

This is also a good time to review the docs in general and to consider whether any changes in this release might have affected the docs.

2. Pull in any new changes from the current docs branch

The docs published as latest in the OTA Connect Developer Guide are built from the most recent release’s docs branch ({version}-docs). There will very likely be changes from there that have not been pulled into master yet. Open up a PR to merge the previous release’s docs into master, resolving any merge conflicts as needed. Once that PR is merged, you can move on to the next step.

3. Create a new tag

Releases are built automatically by gitlab from annotated tags of the form major.minor, where major and minor are numbers. We normally set major to the current year and minor to an incrementing number beginning at 1.

To create a release, checkout the revision you want to bless, then:

git tag -as <tag>   # e.g. git tag -a 2018.4
git push github <tag>

Gitlab will build this tag and automatically create a release for it on github.

3.1. Updating an already-released tag

Generally, you should not update a tag after it has already been pushed to github. This is asking for confusion and problems down the line. However, if something goes wrong in creating the release from the tag, you may need to do this anyway. Note that you will need to manually delete the release on github if it has been created already. (Otherwise, the release’s files will not get updated.) You will then need to either retry the specific github-release step or re-trigger the entire pipeline (which can be done by re-pushing the tag to github).

4. Create a new docs branch

Create (and push to github) a new branch with the commit you just tagged as the parent:

git checkout -b <tag>-docs # e.g. git checkout -b 2019.63-docs
git push github <tag>-docs

5. Update doxygen on github

You will need to update the doxygen documentation both for the new release and master.

This step is now done automatically through a GitLab pipeline but you can refer to the automation script for the exact steps, in case it needs to be done manually.

The pages should be updated a few minutes after a successful release pipeline execution.

6. Update the description of the github release

Once the release is ready on github, it should be edited to include a link to the changelog and doxygen documentation for that particular release. You can use a previous release as a model of how to format these links.

7. Update the homebrew recipe for aktualizr

The homebrew aktualizr recipe should be updated with the new release.

There is a github CI job that will automatically update the recipe, build a bottle, and upload the bottle to the release page when a new release is created. The one thing it doesn’t do is make the pull request to update the recipe in the tap.

You’ll find the new recipe attached to the CI run for the release—​it should be the latest run on the Actions tab. You can download the file from there, and submit the changes as a pull request to the homebrew-otaconnect repo.

7.1. Fallback: manually build a bottle and update the homebrew recipe

If the CI job failed for some reason, you might need to manually create the new bottle and edit the recipe. Here are the steps to follow (you’ll need a Mac with homebrew installed):

  1. Edit the recipe on your local system with brew edit aktualizr, and replace the old version tag with the new one.

  2. Build it, and then bottle it:

    brew rm aktualizr && \
    brew install --build-bottle aktualizr && \
    brew bottle aktualizr

    This will create a bottle file named aktualizr--VERSION.mojave.bottle.tar.gz, and output a block of Ruby code that looks something like this:

      bottle do
        cellar :any
        sha256 "391bc242685d86fd4fc69d90d98e10a464e6feebca943d3f48f848615c898085" => :mojave
      end
  3. Rename the file, removing one of the dashes (i.e. mv aktualizr--2019.6.mojave.bottle.tar.gz aktualizr-2019.6.mojave.bottle.tar.gz). I don’t know why the generated filename is always wrong, but it is.

  4. Add the renamed bottle file as an artifact to the release on the aktualizr releases page.

  5. Replace the bottle do block in your local recipe with the generated block from step 2, and add the appropriate root_url directive.

  6. Test the recipe locally, including installing from the bottle: brew reinstall --force-bottle aktualizr.

  7. Open a PR on the homebrew-otaconnect repo to update the recipe with all your changes.

8. Verify the released Debian packages

Newly created releases automatically trigger an OTF pipeline in gitlab. Currently, you still need to manually verify that the pipeline actually succeeded.

9. Update meta-updater

The version of aktualizr used by meta-updater should be updated to match the new release. First, open a PR against master that updates aktualizr to the same commit used in the newly released tag. This is also a good time to update the aktualizr recipe to pull the latest version of garage-sign.

Once that PR has passed oe-selftest, successfully passed review, and gotten merged, you should then backport that change, along with anything else relevant since the last backport was done, to the currently supported release branches. Note that while master is allowed to use arbitrary recent version of aktualizr, the release branches should only use released versions of aktualizr.