Skip to content

Latest commit

 

History

History
74 lines (39 loc) · 3.79 KB

File metadata and controls

74 lines (39 loc) · 3.79 KB
summary Learn how to how to store OutSystems applications and modules in external version control systems such as GitHub, SVN or Azure Repos.
guid 9e611128-511d-494f-a1f0-5603ba863afc
locale en-us
app_type traditional web apps, mobile apps, reactive web apps
platform-version o11
figma https://www.figma.com/file/XbkdagtFJ9kxan8pAx0Qsz/DevOps?node-id=1542:340

Integrate OutSystems with external version controls

This article explains how to store OutSystems applications(.oap), modules(.oml) or versioning manifest files in external version control systems.

We'll use GitHub as an example since it tends to be mentioned the most, but the same procedure can be applied to others, as GitLab, SVN, or Azure Repos.

SysOps teams can keep looking into GitHub before deploying new application versions to Pre-production or Production. Every change is documented there, and each change is linked to user stories.

OutSystems is highly extensible, based on OutSystems APIs and GitHub APIs is quickly possible to do the integration, providing visibility into the history of OutSystems application deployments in GitHub.

Build a GitHub integration as part of CI/CD pipeline

Following the steps described in OutSystems CI/CD it's possible to set up a Jenkins pipeline with 3 or more environments as: Development, Test, and Production.

Then you should add an additional step after running tests: "upload to GitHub" and remove the steps related to other environments if not needed. When the pipeline reaches that step, it uploads the manifest file in the configured Git repo.

Here is a JenkinsFile example.

The pipeline looks like this:

Here is the Python script, as example, where the pipeline calls in the "Upload to GitHub" step.

Then, based on public GitHub APIs it is possible to create a component like GitHub Connector, so that manifest files are uploaded to GitHub.

So the deployment flow is now as follows:

  1. The developer tags an application when it is ready to move forward in the pipeline:

  2. The TriggerPipeline LifeTime Plugin periodically scans for newly tagged application versions. If one is found, the Jenkins pipeline is triggered:

  3. Applications and their tests are deployed to my test environment:

  4. The tests are executed (and they pass):

  5. The deployment manifest is then uploaded into GitHub.

  6. The full execution log is available in Jenkins. Here is an example.

  7. SysOps can go now to the GitHub repository and sees it updated:

Other use cases

Based on the same procedure is possible to:

  • Upload OutSystems application packages so that code is stored in an external repository.
  • Integrating GitHub with JIRA so that changes are connected to user stories.