X-Git-Url: https://gerrit.simantics.org/r/gitweb?a=blobdiff_plain;f=releng%2Fdoc%2Frelease.html;h=cd2aea0df6965c97a955da02316cf66ef6f5d841;hb=3d8c21802176627ba3ff724980bf7606bcbb5100;hp=126c76cd889489ed514ec46d3e8111b771850cf6;hpb=70d2af523cf495a41ad1ef5a40ec56c7362e59e2;p=simantics%2Fplatform.git diff --git a/releng/doc/release.html b/releng/doc/release.html index 126c76cd8..cd2aea0df 100644 --- a/releng/doc/release.html +++ b/releng/doc/release.html @@ -297,8 +297,9 @@ img {
  • A change log entry is compiled from the issues in this release and made available to the general public separately for the platform and for the open products included in the release train.
  • Roadmap is up-to-date.
  • Tutorials are up-to-date and coherent with the platform.
  • -
  • For all new major/minor releases, Wiki documentation is backed up (cloned). This is not necessary for service releases of old release branches.
  • +
  • For all new major/minor releases, Wiki documentation is backed up (cloned).
  • +

    Simantics Platform Release Process

  • Tag the release in repository
  • -
  • Tag documentation +
  • Backup documentation wiki databases
  • +
  • Build and publish SDK package with and without sources
  • -
  • Build and publish SDK package with and without sources
  • -
  • Build Simantics open source products and plug-in components which are a part of the release train +
  • Build Simantics open source products and plug-in components which are a part of the release train
  • +
  • Update websites to reflect the new release
  • + +
    +

    Released Plug-in Components and Products

    +

    There are both plug-in components and products that are part of the Simantics Release Train that shall be released simultaneously to a major or minor Simantics release.

    +

    Plug-in components are installable features that are deployed online as P2 repositories for general availability. Products are deployed as ZIP files and made available online in designated locations on simantics.org.

    +

    Plug-in components that are part of the release train:

    - -
  • Update websites to reflect the new release +

    Products that are part of the release train:

    + -

    In the following sections each task is described step by step.

    +

    For simplicity, each of these components are versioned accoring to platform versioning, i.e. for Platform SDK 1.26.0 there will be Simantics Desktop 1.26.0, Sysdyn 1.26.0, and so on.

    +
    +

    Release Schedule

    + +

    Simantics Platform Release - Step by Step

    Create release branch from selected commit

    When release stabilisation starts, branch simantics/platform and simantics/third-party repositories:

    @@ -348,7 +368,9 @@ git push origin release/x.y.z[.w]

    When creating major/minor releases <commit> is usually a commit in the master branch. With service releases, branch from an existing release/* branch instead.

    Prepare release branch for use

    -

    Prepare .target files

    +

    In release 1.31.0 Simantics started using uses the wonderful tool from Obeo (https://github.com/mbarbero/fr.obeo.releng.targetplatform) to generate .target files from .tpd files which allow much simpler specification of the target contents and also composition of .tpd files via inclusion.

    +

    In the following steps, it is recommended to ensure every .target file is up-to-date by regenerating them from .tpd files. While doing so, take care to use up-to-date online contents to perform the generation.

    +

    Prepare .tpd files

    1. Retrieve release branch of the platform repository

      @@ -359,28 +381,60 @@ git checkout release/x.y.z[.w]
    2. -

      Edit all target platform files in releng/org.simantics.sdk.build.targetdefinition/, i.e.

      +

      Edit all target platform files in releng/org.simantics.sdk.build.targetdefinition/, i.e.

        -
      • simantics.target
      • -
      • org.simantics.sdk.build.targetdefinition.target
      • -
      • org.simantics.sdk.build.targetdefinition-semantum.target
      • +
      • org.simantics.sdk.build.targetdefinition.tpd
      • +
      • simantics.tpd
      -

      At the beginning of each .target file, increment sequenceNumber by 1

      -
      <?xml version="1.0" encoding="UTF-8" standalone="no"?>
      -<?pde version="3.8"?>
      -<target name="Simantics x.y.z[.w]" sequenceNumber="11">
      -
      -

      Next, replace the following rows in those files:

      -
      <repository location="http://www.simantics.org/download/master/sdk"/>
      -<repository location="http://www.simantics.org/download/master/external-components/maven"/>
      -<repository location="http://www.simantics.org/download/master/external-components/manual"/>
      +

      Replace the following rows in both mentioned files:

      +
      location "http://www.simantics.org/download/master/external-components/maven" {
      +location "http://www.simantics.org/download/master/external-components/manual" {
      +include "http://www.simantics.org/download/master/org.simantics.sdk.build.targetdefinition.tpd"
      +location "http://www.simantics.org/download/master/sdk" {
       

      with

      -
      <repository location="http://www.simantics.org/download/release/x.y.z[.w]/sdk"/>
      -<repository location="http://www.simantics.org/download/release/x.y.z[.w]/external-components/maven"/>
      -<repository location="http://www.simantics.org/download/release/x.y.z[.w]/external-components/manual"/>
      +
      location "http://www.simantics.org/download/release/x.y.z[.w]/maven" {
      +location "http://www.simantics.org/download/release/x.y.z[.w]/manual" {
      +include "http://www.simantics.org/download/release/x.y.z[.w]/org.simantics.sdk.build.targetdefinition.tpd"
      +location "http://www.simantics.org/download/release/x.y.z[.w]/sdk" {
      +
      +
    3. +
    4. +

      Edit version number of org.simantics.sdk feature in features/org.simantics.sdk.feature/feature.xml to x.y.z[.w].

      +
      <feature
      +      id="org.simantics.sdk"
      +      label="Simantics SDK"
      +      version="x.y.z"
      +      provider-name="VTT Technical Research Centre of Finland">
      +
      +

      An example of these changes can be seen in gitweb.

      +
    5. +
    6. +

      Ensure that Redmine has a release engineering issue for the branched release, such as Simantics 1.30.0 release engineering. Make a copy of the previous release issue to create the new one. Include link to original issue while copying.

      +
    7. +
    8. +

      Commit the changes made

      +
       git commit -a
      +
      +

      with the commit message

      +
       Configured release/x.y.z[.w] branch for SDK builds.
      +
      + refs #xxxx
      +
      +

      where #xxxx is the number of the x.y.z[.w] release engineering issue and push them to remote

      +
       git push origin release/x.y.z[.w]
       
    9. +
    10. +

      If you are branching from master, bump the revision of master right now to start the next release cycle in master. +An example of these changes can be seen in gitweb.

      +

      Commit the changes with the following commit message

      +
      Bumped master target and org.simantics.sdk feature versions to x.y.z[.w].
      +
      +refs #yyyy
      +
      +

      where #yyyy is the number of the next release's release engineering issue.

      +

    Initialize release branch distribution web site

      @@ -397,12 +451,29 @@ git checkout release/x.y.z[.w]
  • +

    Running these two builds will ensure that both the external components required to build the SDK and the Simantics SDK for the new release branch are published online at http://www.simantics.org/download/release/x.y.z[.w]/.

    +

    After this, whenever changes are pushed/merged to release/x.y.z[.w] branch in Gerrit, new SDK/Simantics SDK builds are triggered automatically and they will publish the results at the same location online.

    +

    This means that one does not have to do any tricks after this to build and publish the SDK as a P2 repository online. It is an automated process that is performed by the SDK/Simantics SDK Jenkins job.

    +

    Update .target files

    +

    Lastly, we want to change the .target files to point to the correct P2 repository locations. This happens by opening the previously edited .tpd files in Obeo's editor and regenerating the .target files by pressing Alt+R.

    +

    Push the changed files to remote again with commit message:

    +
    Configured release/x.y.z[.w] branch .target files.
    +
    +refs #xxxx
    +
    +

    Test Release Train build

    +

    Trigger an execution of the simantics-release-train Jenkins job with parameters

    + +

    to ensure that all components of the release train build fine and to publish first versions of P2 repositories of everything online.

    Review documentation

    Documentation to review:

    For each wiki page: