Skip to content

Latest commit

 

History

History
236 lines (181 loc) · 11.3 KB

release.md

File metadata and controls

236 lines (181 loc) · 11.3 KB

Gazebo Release Process

This documentation covers the releasing process done by the members of the Gazebo team. It offers a general overview and documentation of the procedures and tools used, and provides a step by step guide to do releases.

General overview

Gazebo development supports different ways of installing the software in the user system. This document covers the process of creating binaries for different distributions starting from a local copy of source code together with descriptions and explanations of preparing, creating and releasing new software versions.

general releasing context

Releasing platforms supported

The Gazebo software supports a large variety of platforms where it can be built from source. A small subgroup of them are selected to be officially supported for binary distribution:

  • Linux: .deb packages are being created for different Ubuntu and Debian releases. Ubuntu LTS and Debian stable are officially supported. Architectures supported are typically amd64, arm64 and armhf but that combination may not be available for all Ubuntu/Debian/Gazebo releases.

  • macOS: binaries for all active releases of macOS are usually created by the Gazebo development team under the support of Homebrew package manager. Binary packages for Brew are called bottles.

  • Windows: currently there is no binary distribution for Windows that covers all Gazebo libraries, although there is an ongoing effort for getting binary packages inside conda-forge.

Infrastructure

The Gazebo team uses different pieces of infrastructure to execute the releasing process:

  • build.osrfoundation.org: main Jenkins server to orchestrate the whole releasing process. It receives requests from Gazebo developers to start the release process, schedule nightly builds, build the binary packages, upload releasing artifacts to repositories, etc.

  • packages.osrfoundation.org: Debian/Ubuntu .deb repositories. The URLs are ready to be used by the APT packages system.

  • osrf-distributions S3: cloud storage space to save the different artifacts produced during the release process. The S3 space is no more than an archive of artifacts that need to be manually downloaded (i.e: to get an old version of a .deb package) or handled by other packaging systems (i.e: brew downloads the bottles from S3, the buildfarm uses the tarballs stored in S3 when building .deb packages).

Type of releases

The Gazebo development uses three different types of releases depending on the stability of the software:

Metadata for Releasing

All package managers need to define different data fields in order to provide the features needed to install and remove packages. In the case of Gazebo Libraries supported packages:

  • deb packages: debian packaging metadata for Debian/Ubuntu packages is stored in a custom way inside the $LIBRARY-release repositories. At the moment of building packages the metadata will be injected in the Jenkins server together with software sources.

    Gazebo projects store the Debian/Ubuntu metadata in individual repositories hosted at: https://github.com/gazebo-release/. There is a repository for each major version of every Gazebo package.

  • brew: Brew uses custom ruby files to declare software metadata called Formulae. Brew Formulae for Gazebo libraries can be found at: https://github.com/osrf/homebrew-simulation/tree/master/Formula

Versioning

A fundamental part of releasing software or binaries is tagging a snapshot of code with a given version. There are different types of versions; this section covers the ones involved in the Gazebo release process.

Versions in software code (upstream versions)

The development team of any software product usually declares a version each time they want to explicitly let users know that a product is ready to be used. This version is called upstream version (where upstream is the development team or authors).

The current upstream version of Gazebo libraries can be found in the repository's CMakeLists.txt file following the CMake project declaration:

  project(gz-fooX VERSION X.Y.Z)

The Gazebo version numbers follows the Semantic Versioning scheme, so versions are composed of MAJOR.MINOR.PATCH numbers. The Gazebo libraries also support the option of creating prereleases. Using this gz-cmake command it's trivial for libraries to declare a prerelease number:

gz_configure_project(VERSION_SUFFIX pre1)

Versions in binary packages

A binary package version should match the Gazebo code version X.Y.Z. All binary package systems append a new part to the version, called the release version, which is designed to reflect changes in the packaging while keeping the same code version X.Y.Z.

Debian/Ubuntu packaging use a hyphen to separate code version from the revision number (starts with 1) R: X.Y.Z-R, where X.Y.Z is the code version, and R is the number that represents changes in packaging metadata (not in software code). The R number can be different on every platform since packaging metadata is different among them.

Brew revision numbers are defined in the code of Brew formulas. If there is no revision, assume 0. When defined, it starts with 1.

revision 1

bottle do
  # sha256 is the 256 hash of binary bottle for the macOS version lala
  sha256 "41af286dc0b172ed2f1ca934fd2278de4a1192302ffa07087cea2682e7d372e3" => :lala
end

For prereleases and nightly binaries the versions are a bit special so the package manager can handle precedence between all the flavours nicely. There is more information available on this topic for the Gazebo libraries.

Processes triggered when using release.py

The following picture shows the interactions triggered when using the release tool release.py explained in this guide:

release.py interactions

Actions for releasing a new version of library gz-foo with major version X:

  1. release.py will tag the local repository and call the gz-fooX-source Jenkins job to generate the sources corresponding to that tag.
  2. gz-fooX-source will generate a tarball with the source code of the new version and call repository_uploader_packages to upload the tarball to osrf-distributions S3.
  3. gz-fooX-source will call _releasepy with the tarball URI information.
  4. _releasepy will start the following jobs in the build server build.osrfoundation.org:
    1. gz-fooX-debbuilder: multiple calls for different Debian/Ubuntu releases
    2. generic-release-homebrew_pull_request_updater: one call for Homebrew macOS release
  5. build.osrfoundation.org jobs start the work of creating releases:
    1. gz-fooX-debbuilder: use tarball with release sources and metadata from gz-fooX-release
    2. generic-release-homebrew_pull_request_updater: use homebrew-simulation repository metadata together with the release sources
  6. The output of the first round of initial jobs triggered by release.py is different:
    1. gz-fooX-debbuilder: builds the Debian/Ubuntu .deb packages and passes them to the repository_uploader_packages job
    2. generic-release-homebrew_pull_request_updater: opens a new PR to coordinate the release process in homebrew-simulation
  7. repository_uploader_packages imports the packages created by the gz-fooX-debbuilder job (there will be one build for each platform combination of Ubuntu/Debian release and architecture) and uploads the .deb packages to packages.osrfoundation.org and osrf-distributions S3.
  8. For macOS, the PR in homebrew-simulation waits for a comment from an Gz developer with the order build bottle that will trigger the job generic-release-homebrew_triggered_bottle_builder.
  9. generic-release-homebrew_triggered_bottle_builderwill use the tarball with release sources from osrf-distributions S3 to generate the binary bottles. They will be uploaded to osrf-distributions S3.

Other tools

Using the gzdev repository command

The gzdev repository command is a convenient way to configure Ubuntu / Debian systems to use a particular set of Gazebo software releases. For example, support for prerelease software can be enabled with the following command:

gzdev repository enable osrf prerelease

The command also has a configuration file with repository settings associated with specific packages by name or name pattern. For example, the following command will enable the package repositories associated with the gz-cmake3 package:

gzdev repository enable --project=gz-cmake3

During the Gazebo Garden development period, this packaage was configured by name to use stable and nightly binaries. It is customary to use nightly binaries for all unreleased package versions.