Differences between revisions 30 and 34 (spanning 4 versions)
Revision 30 as of 2019-09-15 20:19:16
Size: 4044
Comment: complete instructions for uploading backports
Revision 34 as of 2020-05-07 14:12:26
Size: 4068
Comment: use DIST=buster-backports to build with latest debhelper
Deletions are marked like this. Additions are marked like this.
Line 5: Line 5:
 1. Check that [[https://salsa.debian.org/freedombox-team/plinth/pipelines|unit tests]] are not broken.
 1. Run plinth [[https://salsa.debian.org/freedombox-team/plinth/blob/master/functional_tests/README.md|functional tests]] against current master.
 1. Check that [[https://salsa.debian.org/freedombox-team/freedombox/pipelines|unit tests]] are not broken.
 1. Run plinth [[https://salsa.debian.org/freedombox-team/freedombox/blob/master/HACKING.md#running-functional-tests|functional tests]] against current master.
Line 26: Line 26:
    * {{{autopkgtest --apt-upgrade -B <new freedombox .deb> <source folder> -- lxc --sudo autopkgtest-unstable-amd64}}}     * {{{autopkgtest --apt-upgrade -B <new freedombox .deb> <source folder> -- qemu ~/autopkgtest/sid}}}
Line 32: Line 32:
 1. After the release is accepted into Unstable, create a tag for the release. Push commits and the new tag to the Salsa repository.  1. After the release is accepted into Unstable, create a (signed) tag for the release. Push commits and the new tag to the Salsa repository.
Line 53: Line 53:
 1. Build the binary package with {{{DIST=buster gbp buildpackage -v<previous>}}} where <previous> is the previous version in backports.  1. Build the binary package with {{{DIST=buster-backports gbp buildpackage -v<previous>}}} where <previous> is the previous version in backports.
Line 55: Line 55:
    * Set it up using [[https://salsa.debian.org/freedombox-team/plinth/snippets/273|this Vagrantfile]].     * Set it up using [[https://salsa.debian.org/freedombox-team/freedombox/snippets/273|this Vagrantfile]].
Line 57: Line 57:
    * {{{autopkgtest --apt-upgrade -B <new freedombox .deb> <source folder> -- lxc --sudo autopkgtest-buster-amd64}}}     * {{{autopkgtest --apt-upgrade -B <new freedombox .deb> <source folder> -- qemu ~/autopkgtest/buster}}}
Line 60: Line 60:
 1. After the release is accepted into backports, create a tag for the release. Push debian/buster-backports and the new tag to the Salsa repository.  1. After the release is accepted into backports, create a (signed) tag for the release. Push debian/buster-backports and the new tag to the Salsa repository.

This is a brief description of the process of releasing a new version of FreedomBox.

Pre release (work in progress)

  1. Check that unit tests are not broken.

  2. Run plinth functional tests against current master.

  3. Check if boot process happens on one image.

Release

Releases are currently done every 2 weeks.

  1. Check if there are any uncommitted changes on weblate. Commit if there are any.

  2. Clone the plinth repository, and check out latest master branch.
  3. Update translation strings by running python3 setup.py update_translations. Commit.

  4. Run gbp dch -a --multimaint-merge to update debian/changelog.

    • Check plinth bugs to see if any Debian bugs should be closed by the changes in the release.

    • Remove any (Closes: nnnn) that refer to Salsa issues rather than Debian bugs.

  5. Update the Release Notes on the wiki. This is a summary of changes that are relevant to end users or otherwise important to note.

  6. Fetch the latest manual by running make -C doc fetch. Commit.

  7. Update the version number in plinth/__init__.py.

  8. Run dch -r and finalize the changelog.

  9. Commit these changes with the message "Release v<version> to unstable".

  10. Build the package using gbp buildpackage.

    • Check for any new lintian errors.
  11. Run autopkgtest:
    • autopkgtest --apt-upgrade -B <new freedombox .deb> <source folder> -- qemu ~/autopkgtest/sid

  12. Test the new package by installing the package in a development environment, or by building a freedom-maker image with --custom-package.
  13. Build the source-only package using gbp buildpackage --changes-option=-S.

  14. Sign the dsc and changes files with debsign.
  15. Upload the changes file with dput.
  16. When the release is accepted into Unstable, you will get an email "Accepted plinth x.y.z (source) into unstable".
  17. After the release is accepted into Unstable, create a (signed) tag for the release. Push commits and the new tag to the Salsa repository.
    • Weblate will automatically update with the latest changes.

Post release (work in progress)

  1. Publish changes from Release Notes on various channels:
  2. Upload new image to Vagrant Cloud.

Backports

A release can be backported to stable-backports after it has migrated to testing.

  1. Check out the debian/buster-backports branch.
  2. Merge the latest release tag.
    • There will be a merge conflict due to debian/changelog. Resolve it by arranging the releases in the correct chronological order.
  3. Run dch --bpo to add the debian/changelog entry for the new backport release.

  4. Commit this change with message "Release <version> to buster-backports".

  5. Build the binary package with DIST=buster-backports gbp buildpackage -v<previous> where <previous> is the previous version in backports.

  6. There is a vagrant box based on buster that can be used for testing.

  7. Run autopkgtest:
    • autopkgtest --apt-upgrade -B <new freedombox .deb> <source folder> -- qemu ~/autopkgtest/buster

  8. Sign the dsc and changes files with debsign.
  9. Upload the changes file with dput.
  10. After the release is accepted into backports, create a (signed) tag for the release. Push debian/buster-backports and the new tag to the Salsa repository.


CategoryFreedomBox