Last modified by Bastian Triller on 2012/08/24 19:38

From version 116.1
edited by Pascal Robert
on 2012/01/25 18:52
Change comment: There is no comment for this version
To version 119.1
edited by David Avendasora
on 2012/03/05 03:24
Change comment: There is no comment for this version

Summary

Details

Page properties
Author
... ... @@ -1,1 +1,1 @@
1 -XWiki.probert
1 +XWiki.avendasora
Content
... ... @@ -1,7 +1,15 @@
1 1  **[[Jenkins>>http://jenkins-ci.org/]]** is an "extensible continuous integration server". It monitors repeated executions of jobs, such as building software projects, and can be used to build WebObjects applications and frameworks. Jenkins is an open source project and can be used at no cost. It is hosted on [[Github.com>>https://github.com/jenkinsci]].
2 2  
3 -An introductory presentation on building WebObjects projects with Hudson (the predecessor to Jenkins) was given by Mike Schrag at WOWODC-West in 2009, and the video can be [[purchased from wocommunity.org>>http://www.wocommunity.org/apps/WebObjects/WOCommunity.woa/wa/recordings]].
3 +An introductory presentation on building WebObjects projects with Hudson (the predecessor to Jenkins) was given by Mike Schrag at WOWODC-West in 2009. You can also have a look at a [[recording from WOWODC 2009 East>>http://www.wocommunity.org/podcasts/wowodc/east09/WOWODC09E-MultipleVersionsWO.mov]].
4 4  
5 +=== Pre-requirements ===
6 +
7 +Before you install Jenkins, you will need to install
8 +
9 +* a Java SDK (a JRE won't work because of Ant)
10 +* a Git client. Make sure that the 'git' command is in the regular PATH (in /usr/bin or /usr/sbin). If it's elsewhere, like /opt/local/bin/git or /usr/local/bin/git, make a symlink in /usr/bin (example: sudo ln s /opt/local/bin/git /usr/bin/git).
11 +* a Subversion client if you are going to use Subversion
12 +
5 5  === Upgrading from Hudson ===
6 6  
7 7  Switching from Hudson to Jenkins is straight-forward since Hudson was the foundation that Jenkins was forked from. jenkins-ci.org has a [[wiki entry>>https://wiki.jenkins-ci.org/display/JENKINS/Upgrading+from+Hudson+to+Jenkins]] to help with the change.
... ... @@ -15,7 +15,7 @@
15 15  1. Restart your computer
16 16  This is required because the current version of Jenkins does not create the its directory until it launches after you restart you computer.
17 17  1. Point your browser to: [[http://localhost:8080/]]
18 -1. Start setting up jobs (Instructions from WOWODC2011 Coming Soon)
26 +1. [[Start setting up jobs>>Building Frameworks and Applications with Jenkins]]
19 19  
20 20  === Stand-Alone CentOS/RedHat/Amazon Linux ===
21 21  
... ... @@ -34,6 +34,10 @@
34 34  
35 35  Follow [[the following instructions>>http://pkg.jenkins-ci.org/debian/]] to get Jenkins running on a Ubuntu or Debian system. If you didn't install a Sun JVM before installing Jenkins from their repository, it will install OpenJDK 1.6. [[Check the Ubuntu documentation>>https://help.ubuntu.com/community/Java]] for details on how to install a JDK on Ubuntu.
36 36  
45 +=== Post installation ===
46 +
47 +After Jenkins is installed and running, go into Jenkins configuration and make sure that you install the "Multiple SCMs" and "Git plugin". If you are using another SCM like Mercurial or Perforce, install the plugins and the clients for your SCM.
48 +
37 37  === Using SSL ===
38 38  
39 39  Setting up SSL for Jenkins is surprisingly easy. The following is originally from the [[SSL Setup Options>>http://jenkins.361315.n4.nabble.com/SSL-Setup-Options-td954261.html]] page on nabble.com:
... ... @@ -161,6 +161,10 @@
161 161  
162 162  After Jenkins is installed and started, you will need to install at the very minimum two plugins: [[Multiple SCMs>>https://wiki.jenkins-ci.org/display/JENKINS/Multiple+SCMs+Plugin]] and [[Git>>https://wiki.jenkins-ci.org/display/JENKINS/Git+Plugin]]. They are required if you need to build projects by using the WOJenkins templates. If your projects are under another SCM like Subversion or CVS, you also need to install Jenkins for it.
163 163  
176 +{{info}}
177 +Don't forget to set *Global Config user.name Value* and *Global Config user.email Value* in the Jenkins settings, or else doing a Git clone will return an error.
178 +{{/info}}
179 +
164 164  == Building projects ==
165 165  
166 -See [[WO:Configuring jobs in Jenkins]]
182 +See [[Building Frameworks and Applications with Jenkins]]