Phani Raja
Phani Raja

Reputation: 11

How to publish artifacts from Jenkins to uDeploy

How to publish artifacts after a successful build from Jenkins to uDeploy (IBM)?

I heard that urbandeploypublisher.hpi is required to upload this API in Jenkins but I didn't find any where.

Upvotes: 1

Views: 7439

Answers (3)

Shankar kota
Shankar kota

Reputation: 111

http://www-01.ibm.com/support/docview.wss?uid=swg21664334 is the URL for the detailed steps to integrate IBM UCD and Jenkins (It might be useful for who is trying to integrate UCD and Jenkins)

Jenkins stage for UCD deploy

 stage ('UCD Deploy') {
        steps {
            script {
                ucdDeploy {
                    ucdUsername="UCD_username"
                    ucdPassword="UCD_password"
                    applicationName="application_name"
                    environmentName="environment_name"
                    processName="UCD_process_name"
                    artifactVersion= "UCD_component_name : application_version_to_deploy"
                    customProps=""
                }
            }
        }
}

Upvotes: 0

Harshal Vaidya
Harshal Vaidya

Reputation: 179

Yes.. There is a plugin IBM UrbanCode Plugin available which you can integrate in Jenkins.

Below is the link you can see the plugin :- https://developer.ibm.com/urbancode/plugins/

1.1.0 is the stable version that you can use. Just by integrating the plugin in Jenkins you would be able to fetch the recent build (code builded by jenkins) from your Urbancode application.

This should work...

Upvotes: 0

EricMinick
EricMinick

Reputation: 1487

Latest copy of the Plugin for UrbanCode Deploy is available here: https://developer.ibm.com/urbancode/plugin/jenkins/

Upvotes: 2

Related Questions