Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


Panel
titleOn this page
Table of Contents

...

  1. OpenMRS ID

  2. GitHub account with write privileges to openmrs-core and openmrs-distro-platform (all /dev/4 and /dev/5, but can be granted temporarily on request)

  3. JIRA privileges for administering the OpenMRS Core project

  4. Bamboo account,

  5. Make sure that the release manager is added to bamboo-release-manager group

If you need GitHub/JIRA privileges, Bamboo account, open a ticket to request it.

Prior to Release

Prior to any release make an initial decision and post to Talk on what will be included in the release.

...

  1. Write a post that announces the release date and modules to be included on Talk under the Software category. Ask, if there is a need to release modules in order to include latest changes before the platform release.

  2. Verify that there are no unreviewed open tickets against the version to be released. You can use this query https://goo.gl/WXqrI3 (adjust the fixVersion).

    1. Review/close tickets that are in Post Commit Review.

    2. Look carefully at In Progress tickets to see, if some of them have not been committed to a branch (back ported) already. You need to review/close such tickets as well. You can easily check, if any code was committed by searching for an issue id on a GitHub comparison page at https://github.com/openmrs/openmrs-core/compare/2.0.4...2.0.x (adjust the versions). 

    3. Move tickets to the next version that are In Progress or in Pre-Commit Review stage (use Manage Versions admin page for bulk moving of tickets, see the 4.a. step below).

  3. Create a new version for the next release. Using the Manage Versions in https://tickets.openmrs.org/plugins/servlet/project-config/TRUNK.

  4. Release the current version using the above admin page.

    1. When you release a version it will allow you to move non-closed tickets to the next version.

  5. Download the latest CIEL for OpenMRS 1.9.x (use 1.9.x regardless of the release version) as described here. Upload the version to our maven repository to be used in standalone by running (adjust the version and the file parameters to match the downloaded version of CIEL):

    Code Block
    mvn deploy:deploy-file -DgroupId=org.openmrs.contrib -DartifactId=ciel-dictionary -Dversion=1.9.9-20170409 -Dpackaging=zip -Dfile=openmrs_concepts_1.9.9_20170409.sql.zip -DrepositoryId=openmrs-repo-contrib -Durl=https://mavenrepo.openmrs.org/nexus/content/repositories/contrib


  6. Update the CIEL version in standalone's pom.

  7. Check if the branch to be released is green at https://ci.openmrs.org/browse/TRUNK and https://ci.openmrs.org/browse/OP-OPM/branches

  8. Do some last minute rudimentary testing as described in Testing Releases on snapshot artifacts published by CI.

  9. Release process for OpenMRS Core

    1. Build the release plan
      Start by running the release plan for OpenMRS Core (e.g., "OpenMRS Core 2.7.0 Release Plan") in Bamboo.

    2. Verify build completion
      Once the build is finished, confirm that the build icon has turned green, indicating a successful build.

    3. Initiate the release
      Click "Release" to proceed.

    4. Set release variables
      In the "Run stage (Release)" pop-up window, select Override a variable and specify the following variables:

      • build.release.type: Choose the type of release. If this is a full release, set this to release; if it's an alpha or beta release, use prerelease.

      • maven.release.version: Enter the version you are releasing (e.g., 2.6.2 or 2.7.0-alpha).

    5. Execute the release
      After setting the variables, click "Run" to initiate the release process.

    6. Setting the next Maven development version
      After a release, Bamboo automatically updates the next Maven development version on the release branch. However, if you want to set a custom version, follow these steps:

      1. Checkout to the release branch locally
        Switch to the release branch you want to modify, for example, 2.7.x or 2.6.x:

      2. Run the following Maven command to set your desired development version, replacing NEXT_DEV_VERSION with the version you want:

        Code Block
        mvn versions:set -DnewVersion=${OMRS_DEV_VERSION} -DgenerateBackupPoms=false
      3. Create and merge a pull request
        Create a pull request with this version update and merge it into the release branch.

  10. Release process for OpenMRS Platform

    1. Prepare the release branch

      • Checkout the release branch for openmrs-distro-platform locally.

      • Update module versions in the pom.xml file to the latest released versions. (Note: You may need to release these modules individually beforehand.)

    2. Run the platform release plan on Bamboo

      • In Bamboo, select the release plan created for the platform.

    3. Initiate the release

      • Click "Release" to start the release process.

    4. Set release variables

      • In the “Run stage (Release)” pop-up, select Override a variable and specify the following:

        • build.release.type: Set to release for a full release or prerelease for alpha/beta.

        • maven.release.version: Enter the version being released (e.g., 2.6.2, 2.7.0-alpha).

        • maven.development.version: Set the next development version for the release (e.g., 2.7.0-SNAPSHOT, 2.6.3-SNAPSHOT).

    5. Execute the release

      • After configuring the variables, click "Run" to initiate and complete the release process.

  11. Update the openmrs qa-ref2app server by ensuring it is pointing to the openMRS Platform version you have just released.

    1. create a pull request on the 2.x branch on the https://github.com/openmrs/openmrs-distro-referenceapplication repository. For example take a look at this pull request https://github.com/openmrs/openmrs-distro-referenceapplication/pull/692

  12. Update the UAT Platform Environment: Remember to update UAT Platform server. This can be achieved by doing the following. 

    1. Go to your build plan, for example https://ci.openmrs.org/browse/OP-OP26

    2. click the create button (with dropdown icon) in the navigation bar and select create deployment project

    3. Fill in the details like Name e.g OpenMRS platform 2.6.0, description and check the checkbox allowing all users to see the deployment project.

    4. Ensure the link to the build plan matches the build plan containing the release you just made and then click the create deployment button to create the project.

    5. On the page that opens up, add an environment by clicking the Add Environment button.

    6. Provide the environment details like environment name e.g UAT PLATFORM, description e.g Deploys uat tag for platform in docker hub.

    7. On the page that opens up, click the setup tasks button in order to provide the script to be used to make the deployment.

    8. Remove the existing tasks i.e clean working directory task and artifact download task, and then add a new task called script 

    9. Provide a task description i.e Deploy UAT tag for platform in docker hub and in the script body, paste the scripts below and save;-

      script

      Code Block
      languageyml
      docker login -u ${bamboo.dockerhub.username} -p ${bamboo.dockerhub.password}
      
      set -x
      docker buildx imagetools create --tag ${bamboo.docker.image.id} ${bamboo.docker.image.id}:uat
      
      
      ssh -o StrictHostKeyChecking=no \
          -o UserKnownHostsFile=/dev/null  \
          bamboo@uat-platform.openmrs.org \
          sudo deploy-compose uat-platform


    10. Then click the deploy button at the top but ensure the build result to be used in this deployment is the latest build result. Then click the start deployment deployment. 

    11. Then, Login to the UAT Platform Environment and confirm you can see a page like this: https://uat-platform.openmrs.org/openmrs/owa/addonmanager/index.html#/ 

    12. What you SHOULD see after logging in: 

      1. Image RemovedImage Added
    13. Example of what you should NOT see:

  13. In the file listing page on Sourceforge, open the recently released version, click the info "i" button next to the standalone to expand the details of the uploaded ZIP file. For "Download Button", type "OpenMRS Platform 2.0.5 Standalone". Under "Default Download For:" check all the option boxes. Click "Save" to save the settings.

  14. Create the release notes page as a child of Platform Release Notes and include JIRA filters showing all closed tickets (e.g. Platform Release Notes 1.11.1)

  15. Create a help desk case with https://openmrs.atlassian.net/servicedesk/customer/portals at a minimum of one working day prior to the scheduled release providing download links. DO NOT mark Impact as anything other than "Routine." 
    Use the following template for description (replace 2.0.5 with the correct version, the release date & time and the JIRA url, which you can determine from https://issues.openmrs.org/browse/TRUNK/?selectedTab=com.atlassian.jira.jira-projects-plugin:versions-panel):

    Code Block
    In preparation for the release of OpenMRS Platform 2.0.5 on 21/04/2017 10:00 UTC please do:
    1. Update http://openmrs.org/help/report-a-bug/ to allow bug reports for Platform 2.0.5.
    (Do not include the rest, if it is not the latest LTE branch release)
    2. Update http://openmrs.org/download/ to point to Platform 2.0.5 standalone at http://sourceforge.net/projects/openmrs/files/releases/OpenMRS_Platform_2.0.5/openmrs-standalone-2.0.5.zip/download 
    3. Update http://openmrs.org/download/ to point to Platform 2.0.5 war at http://sourceforge.net/projects/openmrs/files/releases/OpenMRS_Platform_2.0.5/openmrs.war/download


  16. Create a new case at OpenMRS helpdesk requesting to update the OpenMRS.org home page and downloads page to the latest release. Please provide links to the downloads.

  17. Create a blog post about the full release(Note: this should be done only after releasing the Full Release not during the alpha or beta release) you have just made by creating a help desk case in the infrastructure requests portal with https://openmrs.atlassian.net/servicedesk/customer/portals requesting for access to the website so that you can be able update the blogs page with your blog.

  18. Write a post that announces the released on Talk under Software category similar to the blog post .

  19. With the exception of pre-releases, you need to release the version in jira, you will probably need admin privileges to do this, you can ask for them through the help desk or ask somebody with the privileges to help you release it in JIRA. 

    1. Go to JIRA

    2. Click the Projects menu item and select OpenMRS Core (TRUNK) from the dropdown.

    3. You should see a menu on the left panel on the page that gets loaded, select Releases.

    4. In the Actions column click the row matching the version you're releasing and select Release from the little pop up menu.

    5. Set the release date and click the Release button, note that you might have to move any unresolved issues to the next release.

...

Expand


  • When running: mvn release:prepare You may also get an error message in validating the generated JavaDoc files, which you can resolve by adding  -Darguments="-Dmaven.javadoc.skip=true" to skip the validation process. However this does not work with Java 8

  • When errors occur while running: mvn release:prepare you may want to rollback the release process to fix them, then use mvn release:rollback. However this has to be followed by the manual deletion of the tag that was created in the local git environment.

  • There are also times when you may get this error message: [ERROR] Failed to execute goal org.apache.maven.plugins:maven-release-plugin:2.1:prepare (default-cli) on project openmrs: Can't release project due to non released dependencies : This is caused by having SNAPSHOT dependencies (outside the current build) which should be released before you can release the project. Their released artifacts should be deployed to Nexus (through release process or manually if necessary). Then the pom.xml should be updated with the release versions and the trunk pom.xml should be bumped to their next SNAPSHOT versions, if development is continuing.

  • When running: mvn clean deploy --batch-mode  You may get an error message like this: Failed to execute goal org.apache.maven.plugins:maven-deploy-plugin:2.5:deploy (default-deploy) on project openmrs: Failed to deploy artifacts: Could not transfer artifact ............ Failed to transfer file ......... Return code is: 401 -> [Help 1].  Solving this requires you to have a nexus repository account, under the openmrs-repo-releases section, in your maven settings.xml file which should be in your MAVEN_HOME folder. If this file does not already exist, you need to create one. See the example maven settings.xml file attached: settings-example-mvnrepo.xml.

  • When running: mvn clean deploy --batch-mode  You may also get an error message like: Failed to transfer file: .........  Return code is: 400    The reason is that the Maven nexus release repo does not allow redeployment by default. To enable that, you could logon nexus and select the release repo, then change the configuration to allow redeployment there. But be aware that any projects using the release artifact will ONLY download the artifact once and thus the artifact you redeployed may not be able to be consumed by the projects, which may cause a lot of troubles. The solution is to manually remove the cached release artifact under .m2/repository so that Maven can download the new one. Because of the disadvantage for the above approach, i just logged onto the nexus repository and manually deleted the successfully deployed artifacts. Then i was able to deploy again.

  • When running: mvn clean deploy --batch-mode  You may also get an error message like: [ERROR] Java heap space -> [Help 1].  To solve this, increase the memory for maven. On my mac, i just typed this on the same shell terminal where i was deploying from: export MAVEN_OPTS="-Xmx512m -Xms128m -XX:MaxPermSize=512m"

  • When you are deploying a module to nexus repository using: mvn clean deploy command  You may get an error message like [ERROR] Failed to execute goal org.apache.maven.plugins:maven-deploy-plugin:2.7:deploy (default-deploy) on project...Return code is: 401, ReasonPhrase:Unauthorized. To solve this you need to add a server for the module repo by adding the following with nexus repository credentials to the list of servers in the file /M2_HOME/settings.xml .

    Code Block
    languagehtml/xml
    <server>
       <id>openmrs-repo-modules</id>
       <username>username</username>
       <password>password</password>
    </server>


...