Skip to main content
Skip table of contents

GIT and Jenkins

The script is used when the flows created in the development machine are to be deployed in the production system.

The developer will push these created flows to the GitHub repository which will be detected by Jenkins on the production environment.

git.png

Create a repository In GitHub for the developer to push the flows from the development machine.

Setting up the Jenkins machine

Install the following on the Jenkins system:

1. JENKINS

2. GIT

3. cURL

Configuring Jenkins

1. Install HTTP Plugins on JENKINS dashboard (localhost:8080) and restart JENKINS server.

2. Go to Jenkins Dashboard > Manage Jenkins > Global Tool Configuration.

3. APPLY and then SAVE.

Creating a new Jenkins job

1. Give the job a name.

2. Provide the description

3. Give the GIT repository URL.

4. Choose how you want to trigger the build.

5. In the build script choose the script type ( Batch or Linux shell) and accordingly put the contents of the CI-CD script present in <FIORANO_HOME>/esb/samples/scripts.

6. You can configure other features like post-build actions based on your requirements.

Jenkins Flow

1. Detect any change in the GIT repository.

2. Clone the repository in the workspace path specified in the script.

3. Zip the directories (API Projects/ Event Processes) inside it.

4. Undeploy/ stop the API Projects/ Event Processes, if running.

5. Import the zipped contents in step 3.

6. Deploy/ start the API Projects/ Event Processes.

7. If any API Project/ Event Process is deleted from the GIT repository, then after step 4, invoke the delete call.

Build Script

1. The script (CI-CD.bat and CI-CD.sh) are present inside <FIORANO_HOME>/esb/samples/scripts.

2. Provide WORKSPACE_PATH, CURL_PATH, REPO_NAME, and GitHub link to be cloned till .git.

3. Sample CI/CD scripts across all platforms are provided to automate the deployment of the Event

Processes. To do the same for APIProjects, provide the correct cURLs.

4. The scripts are created and tested for Linux and Windows.

To zip the contents in Windows, powershell Compress-Archive can be used.

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.