Showing posts with label jenkins. Show all posts
Showing posts with label jenkins. Show all posts

Monday, August 12, 2013

Confluence Publisher Plugin with Jenkins

No comments:
Confluence Publisher Plugin with Jenkins



1) First I installed the confluence publisher plugin in jenkins.

2) Created a account in confluence (on demand service).

3) Get the Server Base Url,




Wiki Url will be like,





4) Configure this Confluence Url in jenkins global configuration



5) Then confgiure which file need to be uploaded in Specific job configuration




6) The specified files will be uploaded to the confluence, the jenkins console will be like,




7) Attached files can be found in confluence in the link



--
Thank you.
Read More

Wednesday, April 17, 2013

Confluence Publisher Plugin with Jenkins

2 comments:
Confluence Publisher Plugin with Jenkins

I integrated confluence publisher plugin with Jenkins. Here are the steps, it may be helpful to some one.

1) First I installed the confluence publisher plugin in jenkins.

2) Created a account in confluence (on demand service).

3) Get the Server Base Url,




Wiki Url will be like,





4) Configure this Confluence Url in jenkins global configuration



5) Then confgiure which file need to be uploaded in Specific job configuration




6) The specified files will be uploaded to the confluence, the jenkins console will be like,




7) Attached files can be found in confluence in the link





Thats it. Enjoy Happy Coding :).

Additional Info :



--
Thank you.


Regards,
Kaleeswaran.S
Read More

Tuesday, April 9, 2013

Interact with Jenkins through Jenkins.jar

No comments:
Interact with Jenkins through Jenkins.jar


https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTdi94ODgrLWV6OaI5CxKqXkhuZlxjhVP13i7ezOYWSdOWY5OGURZIePzh0

To get the help commands from Jenkins,

java -jar /Users/users/Downloads/jenkins-cli.jar -s http://localhost:8080/jenkins/ help

Results will be like




Trigger a build from terminal

java -jar /Users/user/Downloads/jenkins-cli.jar -s http://localhost:8080/jenkins/ build DemoJob

Jenkins-cli jar can be downloaded from http://localhost:8080/jenkins/cli

Environment variable values can be accessed from shell($FOO, %FOO%) and Ant ( ${env.FOO} )  like

The parameter are available as environment parameters. So e.g. a shell ($FOO, %FOO%) or Ant ( ${env.FOO} ) can access these values.

https://wiki.jenkins-ci.org/display/JENKINS/Parameterized+Build






--
Thank you.


Regards,
Kaleeswaran.S
  
Read More

Wednesday, March 27, 2013

Jenkins Environment variables

No comments:



Jenkins is having many environment variables, Each environment variable is very important one or other way. Lets see how can we use these variables efficiently  in jenkins.

E.g : BUILD_NUMBER

While archiving each build on a job. We can name the build such as MyJob_1.

Goal: -DjobName=${env.JOB_NAME}  -DbuildNumber=${env.BUILD_NUMBER}



Environment Variable Description
BUILD_NUMBER The current build number, such as "153"
BUILD_ID The current build id, such as "2005-08-22_23-59-59" (YYYY-MM-DD_hh-mm-ss)
BUILD_URL The URL where the results of this build can be found (e.g. http://buildserver/jenkins/job/MyJobName/666/)
NODE_NAME The name of the node the current build is running on. Equals 'master' for master node.
JOB_NAME Name of the project of this build. This is the name you gave your job when you first set it up. It's the third column of the Jenkins Dashboard main page.
BUILD_TAG String of jenkins-${JOB_NAME}-${BUILD_NUMBER}. Convenient to put into a resource file, a jar file, etc for easier identification.
JENKINS_URL Set to the URL of the Jenkins master that's running the build. This value is used by Jenkins CLI for example
EXECUTOR_NUMBER The unique number that identifies the current executor (among executors of the same machine) that's carrying out this build. This is the number you see in the "build executor status", except that the number starts from 0, not 1.
JAVA_HOME If your job is configured to use a specific JDK, this variable is set to the JAVA_HOME of the specified JDK. When this variable is set, PATH is also updated to have $JAVA_HOME/bin.
WORKSPACE The absolute path of the workspace.
SVN_REVISION For Subversion-based projects, this variable contains the revision number of the module. If you have more than one module specified, this won't be set.
CVS_BRANCH For CVS-based projects, this variable contains the branch of the module. If CVS is configured to check out the trunk, this environment variable will not be set.
GIT_COMMIT For Git-based projects, this variable contains the Gitish of the commit checked out for the build
GIT_BRANCH For Git-based projects, this variable contains the Git branch that was checked out for the build (normally master)


--
Thank you.


Regards,
Kaleeswaran.S
Read More