Re: Does Jenkins have a restriction (limit) with the number of concurrent connections to a Git repo (via Bitbucket) ?

2019-08-14 Thread Gareth Bowles
BitBucket server and other Git servers do have a limit on the maximum number of concurrent clones, which is a factor of the resources you have on the BitBucket server machine. See https://confluence.atlassian.com/bitbucketserver062/scaling-bitbucket-server-969537534.html -- You received this m

Re: ssh slaves connection timeout

2014-05-22 Thread Gareth Bowles
We have masters and slaves set up in VPC at my job. The only thing to make sure of is that the master / slave communication port is open in your security groups; this should be set to a fixed value via the "TCP port for JNLP slave agents" field in http://yourjenkins/configureSecurity (even tho

Re: Jenkins scaling as a test-reporting framework?

2014-04-02 Thread Gareth Bowles
The big disadvantage of storing all your test results in Jenkins is that they are stored in XML files and the only way to analyze of visualize them is via the Jenkins test result reporting plugins such as the Junit plugin. Most of them graph passes and failures over time and let you drill down

Re: Shared Perforce workspace

2014-03-24 Thread Gareth Bowles
Does every build need to sync the entire depot ? That's very unusual; individual builds that get code from Perforce normally use a restricted client view to get only the sub-paths from the depot that they need. In that situation, each Jenkins job would use a different client view and you shou

Re: Automatically creating a job inside a folder

2013-08-06 Thread Gareth Bowles
By "folder", do you mean a view created with the View plugin ? If so, you can use a regex in the view definition that selects jobs by a substring in their name, as there will be no need to do anything extra in your script. -- You received this message because you are subscribed to the Google

Re: scaling jenkins to multiple projects without copying the projects

2013-06-24 Thread Gareth Bowles
You could also look at the Job DSL plugin; once you have your seed jobs set up, it's trivial to create a new set of jobs. On Monday, June 24, 2013 4:18:17 AM UTC-7, Mandeville, Rob wrote: > > I’ve had this problem as well. There are

Re: job DSL plugin

2013-05-17 Thread Gareth Bowles
Do you need to run the same job on multiple OSes ? In that case you'd be better off using a matrix job so that you only have to maintain one job configuration. If you need multiple jobs that have small configuration differe

Re: Real-time log parsing?

2012-10-12 Thread Gareth Bowles
You can certainly tail the build log file while the build is in progress; it will be in $JENKINS_HOME/jobs/$JOB_NAME/builds/$BUILD_NUMBER, where $BUILD_NUMBER is the active build. I'm not sure of an easy way to get this number from the command line, you might just have to list the build subdir

Re: Global Job Configuration

2012-10-08 Thread Gareth Bowles
Take a look at the Job DSL plugin- it's pretty new so you may need to extend the code yourself, but it will do exactly what you're asking. On Monday, October 8, 2012 9:29:39 AM UTC-7, Chris Wozny wrote: > > All, > > I was wondering if