# wget -O /etc/yum.repos.d/jenkins.repo http://pkg.jenkins-ci.org/redhat/jenkins.repo # rpm --import http://pkg.jenkins-ci.org/redhat/jenkins-ci.org.key
# yum install jenkins
# /etc/rc.d/init.d/jenkins start
Item | Description | Example |
SMTP server | SMTP server | "smtp.gmail.com" |
Default user e-mail suffix | If you specify this as "@gmail.com", user e-mail address will be automatically obtained as <user name><suffix> | @gmail.com (for gmail) |
Item | Description | Example |
Use SMTP Authentication | If you expect SMTP authorization, check this | TRUE (for gmail) |
User Name | e-mail user name for SMTP authentification | "syatsuzuka" |
Password | password for SMTP Authentification | "xxxx" |
SSL | if SMTP server require SSL, check this | TRUE (for gmail) |
SMTP Port | Port used in SMTP server | "465" (for gmail) |
Charset | Character used in e-mail | "UTF-8" |
Item | Description | Example |
Name | JDK name | "jdk8u25" |
Install automatically | If you want to install JDK automatically, keep this checked | TRUE (default) |
Version | JDK Version | "Java SE Development Kit License Agreement |
I agree to the Java SE Development Kit License Agreement | TRUE |
Item | Description | Example |
Item name | Item name | "TestJOB" |
Now, you have new directory named "TestJOB" in JENKINS_HOME, namely, /var/lib/jenkins. Resources which are necessary for build will be stored in workspace under
Item | Description | Example |
Repository URL | Repository URL | "http://localhost/svn" |
Here, I choose "Poll SCM". Check "Poll SCM". If you want to check every 5min, set as follows. The order of parameters are same as cron.
min hour day month wday
*/5 * * * *
Item | Description | Example |
Maven Version | installed maven version | "maven3.2.2" |
goal | maven goal | "compile test" |
Item | Description | Example |
Test report XMLs | Specify the location of JUnit result report file | "trunk/sample/target/surefire-reports/*.xml" |
#ref(): File not found: "CreateItem_fig9.png" at page "HowToUse/Jenkins/1.594"
Item | Description | Example |
Recipients | recipients of error notification | "syatsuzuka@xxx.org" |
#ref(): File not found: "CreateItem_fig10.png" at page "HowToUse/Jenkins/1.594"
#ref(): File not found: "RunBuild_fig2.png" at page "HowToUse/Jenkins/1.594"
#ref(): File not found: "RunBuild_fig3.png" at page "HowToUse/Jenkins/1.594"
Also, you can see the detail information from terminal log, Jenkins -> sample -> #<job number> -> "Console Output Windows".
S.Yatsuzuka