0% found this document useful (0 votes)
24 views1 page

15 2

The document discusses Jenkins, a continuous integration tool that can be triggered on a schedule using commands like java -jar jenkins.war -httpPort=8080 and cron syntax to run builds every 5 minutes or every day at 8am by specifying parameters like MINUTES, HOURS, DAYMONTH, MONTH, and DAYWEEK.

Uploaded by

Akshay Khot
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
24 views1 page

15 2

The document discusses Jenkins, a continuous integration tool that can be triggered on a schedule using commands like java -jar jenkins.war -httpPort=8080 and cron syntax to run builds every 5 minutes or every day at 8am by specifying parameters like MINUTES, HOURS, DAYMONTH, MONTH, and DAYWEEK.

Uploaded by

Akshay Khot
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

Continious Integration Tool -Jenkins

10th person -code -SVN

7am Jenkins-Triggering on time

_reports

Mail-

Jenkins Command:

java -jar jenkins.war -httpPort=8080

Scheduling:

MINUTES Minutes in one hour (0-59)

HOURS Hours in one day (0-23)

DAYMONTH Day in a month (1-31)

MONTH Month in a year (1-12)

DAYWEEK Day of the week (0-7) where 0 and 7 are sunday

If you want to shedule your build every 5 minutes, this will do the job : */5 * * *
*

If you want to shedule your build every day at 8h00, this will do the job : 0 8 * *
*

You might also like