The error "Timeout after 10 minutes" in your output shows that you're
seeing https://issues.jenkins-ci.org/browse/JENKINS-23476 .  The plugin
assumes (incorrectly in your case) that a checkout operation (which is
entirely local disc I/O) will not need more than 10 minutes.  Your
repository is so large, or your disc I/O is so slow that you can't checkout
within the 10 minute timeout period.

You can either use sparse checkout within the git plugin to reduce the time
required to perform a checkout, or you can switch from using the git plugin
to perform your checkout yourself as a build step.  Performing the checkout
yourself as a build step is more complicated and more error prone, but does
not have the timeout limit.  Unfortunately, it also makes Jenkins less
useful, because you can no longer see source code changes as part of the
job, and you can no longer poll for changes.

Mark Waite


On Sat, Jul 19, 2014 at 12:46 PM, bandi pavankumar reddy <
pavanreddy...@gmail.com> wrote:

> i configured correctly and i configured time out 60 minutes and while
> starting build OK after 13 to 14 minutes it was giving error time out..some
> files fetching and cloning also....but i having total 16 files in that 7
> files cloning in 13 minute ....but still 6 file's pending with time out
> error...i was configured git repository with advanced clone option in that
> i mentioned time out.....i am sending Error... i tryed with shallow clon
> also
>
> Fetching upstream changes from git@100.00.1000.0:Uuuu_P_SOURCE.git
> > C:\Program Files (x86)\Git\bin\git.exe fetch --tags --progress
> git@100.00.1000.0:Uuuu_P_SOURCE.git +refs/heads/*:refs/remotes/origin/*
> > C:\Program Files (x86)\Git\bin\git.exe rev-parse
> "origin/master^{commit}"
> Checking out Revision a9f4bc55deac7ceb3ef93799ca15a83cea955242
> (origin/master)
> > C:\Program Files (x86)\Git\bin\git.exe config core.sparsecheckout
> > C:\Program Files (x86)\Git\bin\git.exe checkout -f
> a9f4bc55deac7ceb3ef93799ca15a83cea955242
> ERROR: Timeout after 10 minutes
> FATAL: Could not checkout null with start point
> a9f4bc55deac7ceb3ef93799ca15a83cea955242
> hudson.plugins.git.GitException: Could not checkout null with start point
> a9f4bc55deac7ceb3ef93799ca15a83cea955242
>
> --
> You received this message because you are subscribed to the Google Groups
> "Jenkins Users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to jenkinsci-users+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>



-- 
Thanks!
Mark Waite

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to