X-Git-Url: https://gerrit.simantics.org/r/gitweb?p=simantics%2Fplatform.git;a=blobdiff_plain;f=releng%2Fdoc%2Frelease.html;h=797f96a34aed99e0d50fd042f8d152ca828e866e;hp=126c76cd889489ed514ec46d3e8111b771850cf6;hb=7704490bfa8dc36625615df61cfe18d01d86ff18;hpb=70d2af523cf495a41ad1ef5a40ec56c7362e59e2 diff --git a/releng/doc/release.html b/releng/doc/release.html index 126c76cd8..797f96a34 100644 --- a/releng/doc/release.html +++ b/releng/doc/release.html @@ -293,12 +293,13 @@ img {

Definition of Done for Simantics Platform Releases

    -
  1. The simantics/platform and simantics/third-party Git repositories have a branch release/x.y.z[.w] and tag x.y.z[.w].
  2. +
  3. All Git repositories that are part of the Simantics release train have a branch called release/x.y.z[.w] and tag called x.y.z[.w].
  4. 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.
  5. Roadmap is up-to-date.
  6. Tutorials are up-to-date and coherent with the platform.
  7. -
  8. For all new major/minor releases, Wiki documentation is backed up (cloned). This is not necessary for service releases of old release branches.
  9. +
  10. 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.

    +

    Core components of the release train:

    - -
  • Update websites to reflect the new release +

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

    + +

    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 engineering issue(s) in Gitlab

    +

    Ensure that Gitlab has a release engineering issue for the branched release, +such as Simantics 1.34.0 release engineering

    +

    Create release branch from selected commit

    -

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

    -
    git clone ssh://<user>@www.simantics.org:29418/simantics/platform.git
    -cd platform
    -git branch release/x.y.z[.w] <commit>
    -git push origin release/x.y.z[.w]
    -
    -git clone ssh://<user>@www.simantics.org:29418/simantics/third-party.git
    -cd third-party
    -git branch release/x.y.z[.w] <commit>
    -git push origin release/x.y.z[.w]
    -
    -

    When creating major/minor releases <commit> is usually a commit in the master branch. +

    When release stabilisation starts, all relevant repositories need to be branched. +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

    -
      -
    1. -

      Retrieve release branch of the platform repository

      -
      git clone ssh://<user>@www.simantics.org:29418/simantics/platform.git
      -cd platform
      -git branch release/x.y.z[.w] remotes/origin/release/x.y.z[.w]
      -git checkout release/x.y.z[.w]
      +

      Instead of doing this clone+branch+push sequence for every SDK repository separately, please use the included release-helper.sh shell script to perform this mechanical work. +The script supports many useful basic git commands which all perform the requested operation on all the release train repositories. +The operations can be seen from the help text printed by the script when given no arguments:

      +
      Usage: release-helper.sh <version> <branch-name> <user-name> <command> [<command-arguments>]
      +
      +Commands:
      +    clone                The first thing that needs to be done before anything else
      +                         Clones all platform repositories under directory <version>
      +
      +Inspection commands:
      +    diff [args]          Run git diff [args] for each platform repository
      +    log [args]           Run git log [args] for each platform repository
      +    status [args]        Run git status [args] for each platform repository
      +    list-tags            Run git tag -l for each repository
      +
      +Action:
      +    add
      +    branch               Run git branch <branch-name> for each platform repository
      +    checkout             Run git checkout <branch-name> for each repository
      +    commit
      +    fetch                Run git fetch --all for each repository
      +    pull                 Run git pull --all for each repository
      +    push                 Run git push origin <branch> for each repository
      +    push-tags            Run git push --tags for each repository
      +    remove-tag           Run git tag -d v<branch> for each repository
      +    reset [args]         Run git reset [args] for each repository
      +    tag                  Run git checkout <branch> and
      +                         git tag -a v<branch> -m "Simantics <branch> simultaneous release"
      +                         for each repository
      +
      +Compound release commands:
      +    prepare-release-branch <from-branch>
      +        <from-branch>    the name of the branch that the codebase is currently on
      +
      +Top-level release commands:
      +    bump-master-version <from-version> <to-version>
      +        <from-version>   the version string to replace
      +        <to-version>     the replacing new version string
      +
      +    branch-release <from-branch>
      +        <from-branch>    the branch to create the service branch from
      +                         e.g. master or release/x.y.z
       
      -
    2. -
    3. -

      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
      • -
      -

      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">
      +

      Begin by cloning all the repositories for working on

      +
      user=<your-git-username>
      +version=x.y.z
      +branch=release/x.y.z
      +./release-helper.sh $version $branch $user clone
       
      -

      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"/>
      +

      This will create a directory called x.y.z under the current working directory and clone all the repositories under it. +The first version argument is only used for the base working directory x.y.z. +The second branch argument tells what branch to specify to some of the available actions, e.g. branch, checkout, etc.

      +

      Creating the release branch from master and pushing the new branches to remote happens as follows:

      +
      # When the commit messages appear, add references to created
      +# Gitlab release engineering issues by adding this to the commit message:
      +# 
      +# gitlab #xxxx
      +#
      +# where xxxx is the release engineering issue for the respective project
      +./release-helper.sh $version $branch $user branch-release master
      +./release-helper.sh $version $branch $user push
       
      -

      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"/>
      +

      If you're creating a service release x.y.w from x.y.z where w > z, do this:

      +
      fromBranch=release/x.y.z
      +branch=release/x.y.w
      +./release-helper.sh $version $branch $user branch-release $fromBranch
      +./release-helper.sh $version $branch $user push
       
      -
    4. -
    -

    Initialize release branch distribution web site

    +

    If you branched a new release from master, you should also bump the revision of the master branch right now to start the next release cycle in master. +An example of these changes can be seen in gitweb or in review 1362. +The changes include:

      -
    • Run SDK/Deploy External Components to Web build with parameters: -
        -
      • GERRIT_REFNAME: release/x.y.z[.w]
      • -
      • PUBLISH_ARTIFACTS: true
      • +
      • Simantics Desktop splash screen update (version number)
      • +
      • Simantics target platform name to state correct development version
      • +
      • org.simantics.sdk feature version bump
      • +
      • org.simantics.sdk.repository project version bump
      -
    • -
    • Run the SDK/Simantics SDK build with parameters: +

      Perform and push the changes in master by running:

      +
      branch=master
      +./release-helper.sh $version $branch $user checkout
      +./release-helper.sh $version $branch $user bump-master-version x.y.z X.Y.Z
      +./release-helper.sh $version $branch $user push
      +
      +where x.y.z is the old version number of master and X.Y.Z is the new version number. +

      Test Release Train build

      +

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

        -
      • GERRIT_REFNAME: release/x.y.z[.w]
      • -
      • PUBLISH_ARTIFACTS: true
      • -
      -
    • +
    • GERRIT_REFNAME: release/x.y.z[.w]
    • +
    • PUBLISH_ARTIFACTS: true
    +

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

    +

    The release train build is currently never ran automatically. +However, after following all these steps, whenever changes are pushed/merged to release/x.y.z[.w] branch in Gerrit, new Jenkins builds are triggered automatically and they will publish the results (P2 repositories/products) at their designated locations online.

    +

    [Optional reading] Release train build details

    +

    The release train build does two very important steps as the first things, +i.e. build the external dependency P2 repositories for both the +Platform SDK and Simupedia:

    +
    stage('External Dependencies') {
    +    node {
    +        build job: 'SDK/Deploy External Components to Web', parameters: params1
    +        build job: 'Member Components/Simupedia/fi.semantum.simupedia.build.p2.site', parameters: params1
    +    }    
    +}
    +
    +

    After that it builds the Platform SDK and Simupedia before building anything else:

    +
    stage('SDK') {
    +    node {
    +        build job: 'SDK/Simantics SDK', parameters: params1
    +        // Note that Simantics SDK builds simupedia-git as well
    +    }
    +}
    +

    Review documentation

    Documentation to review:

    For each wiki page:

      @@ -425,27 +512,31 @@ git checkout release/x.y.z[.w]

    Tag release/* branches

    When the release branches are ready for the release, tag them with the tag vx.y.z[.w]:

    -
    git clone ssh://<user>@www.simantics.org:29418/simantics/platform.git
    -cd platform    
    -git checkout release/x.y.z[.w]
    -git tag vx.y.z[.w] -m "Simantics x.y.z[.w] release"
    -git push origin --tags
    -
    -git clone ssh://<user>@www.simantics.org:29418/simantics/third-party.git
    -cd third-party
    -git checkout release/x.y.z[.w]
    -git tag vx.y.z[.w] -m "Simantics x.y.z[.w] release"
    -git push origin --tags
    +
    ./release-helper.sh x.y.z release/x.y.z your-git-username checkout
    +./release-helper.sh x.y.z release/x.y.z your-git-username pull
    +./release-helper.sh x.y.z release/x.y.z your-git-username tag
    +./release-helper.sh x.y.z release/x.y.z your-git-username push-tags
     
    -

    Note The -m argument must be supplied to create an annotated tag. +

    Note: release-helper.sh will supply the -m argument to git tag to create an annotated tag. Only annotated or signed tags can be pushed to Gerrit.

    -

    Dump documentation wikis

    -

    Dump documentation wiki using dump-wikis.sh script.

    -

    The wiki documentation is mainly in MediaWiki installations. The only -sane way to tag the documentation is to back up the mysql database -backing the wiki.

    +

    Backup documentation wiki databases

    +

    NOTE: This step is now deprecated since we are in the process of moving all mediawiki-based documentation into the platform git repository.

    +

    This step is only necessary for major/minor releases, not for service releases.

    +

    The wiki databases to be backed up are:

    + +

    These are MediaWiki installations. The only sane way to "tag" the documentation +is to back up the mysql database backing the wiki. Should the wiki be required +at a later time for some reason, we'll put the documentation up then in a +separate Mediawiki installation.

    +
      +
    1. Dump documentation wiki databases using dump-wikis.sh script.
    2. +
    3. Put the generated backup x.y.z.tar.gz at /var/backup/simantics-releases/x.y.z/wiki/
    4. +

    Compile change log entry

    • Edit the main page and add a a link for release x.y.z[.w].
    • @@ -494,14 +585,15 @@ backing the wiki.

    Disseminate information about the release

    -

    Mail template:

    +

    Newsletter template:

    Hello everyone,
    -   
    +
     Simantics release x.y.z[.w] has been released. Head over to
     https://www.simantics.org/redmine/news/<news number>
     for the release news.
    @@ -509,9 +601,11 @@ for the release news.
     Best regards,
     Simantics Release Engineering Team
     
    -

    News entry template:

    -
    On <date> Simantics x.y.z[.w] was tagged in SVN. Please find change log at:
    -* [[simantics-platform:Simantics_xyzw|Simantics x.y.z.w]]
    +

    Redmine news template:

    +
    Title: Simantics x.y.z[.w] released
    +
    +Simantics x.y.z[.w] was released on <date>.
    +Please find change log at: [[simantics-platform:Simantics_xyzw|Simantics x.y.z[.w]]]
     
     Insert some general thoughts on the release...
     
    @@ -519,8 +613,6 @@ Insert some general thoughts on the release...

    TODO

    • Incorporate tutorial code in the platform repository as a separate folder to allow platform builds to directly ensure that the tutorial code still builds OK
    • -
    • Create a parametrized release train pipeline build in Jenkins that creates all artifacts of a simantics release in one go
    • -
    • Start using https://github.com/mbarbero/fr.obeo.releng.targetplatform to generate .target files. .tpd files allow specifying version ranges instead of specific versions.