Automatic Response: I will be on break Monday May 2nd, 2016.
Please contact Asif Chinwalla for any urgent needs. Thank you. On May 1, 2016, at 11:59 AM, [email protected] wrote: > [email protected] > Google Groups -- 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 [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-users/6DCA0D9D-13BB-4390-B089-E4F5F36E1C77%40gmail.com. For more options, visit https://groups.google.com/d/optout.
> > Topic digest > View all topics > • 2.0 Pipeline - input step with choice param fails - 1 Update > • CSV to Jenkins Report - 2 Updates > • Jenkins 2.x Pipeline - parametrized build, parameters are not > evaluated in Git - 1 Update > • Jenkins windows slave 401 authorization required error - 2 > Updates > • Running long jenkins jobs ssh times out - 1 Update > • How to group jobs into project in Jenkins - 1 Update > • Jenkins pipeline - Remove @tmp folder - 1 Update > • Best practices for Jenkins slave disk layout - 2 Updates > 2.0 Pipeline - input step with choice param fails > Lionel Orellana <[email protected]>: May 01 07:21AM -0700 > > Hello > > I got this code from the snippet generator to capture user input with a > Choice Parameter: > > input message: 'where do you want to build this?', parameters: [[$class: > 'ChoiceParameterDefinition', choices: ['ec2', 'docker'], description: '', > name: 'label']] > > When I add it to my pipeline it throws > > java.lang.ClassCastException: hudson.model.ChoiceParameterDefinition.choices > expects class java.lang.String but received class java.util.ArrayList > > > ChoiceParameterDefinition > <http://javadoc.jenkins-ci.org/hudson/model/ChoiceParameterDefinition.html> > does seem to have a constructor that takes a string[] for choices. > > Any ideas? > > thanks > > Lionel. > Back to top > CSV to Jenkins Report > Pradeep Patra <[email protected]>: May 01 03:10AM -0700 > > Hi all, > I have a test suite which generates the results in CSV file. I was > looking for a Jenkins Plugin to take the CSV as input and show to the user > as a fancy report. Can I do that , if so how? > > Any Thoughts will help. > > Regards > Pradeep > Baptiste Mathus <[email protected]>: May 01 02:53PM +0200 > > Hi, > Possibly https://wiki.jenkins-ci.org/display/JENKINS/Plot+Plugin but didnt > try it myself. > > My 2 cents > > Back to top > Jenkins 2.x Pipeline - parametrized build, parameters are not evaluated in Git > Lionel Orellana <[email protected]>: May 01 05:19AM -0700 > > Doesn't the Pipeline Multibranch Plugin > <https://wiki.jenkins-ci.org/display/JENKINS/Pipeline+Multibranch+Plugin> do > what you want? Still sounds like a bug though. > > Back to top > Jenkins windows slave 401 authorization required error > Sharon Yanko <[email protected]>: May 01 01:54AM -0700 > > Hi everyone, > > I am new to jenkins. > I wish to run jenkins slave but when launching the slave-agent.jnlp on the > slave I am receiving the following error: "401 for > url:http://myserver/jnlpJars/remoting.jar" > > So I copied remoting locally and received:"401 Unauthorized" error. > > I am running jenkins on Windows and the slaves are also windows. > I am using Active directory plugin with Windows Negotiate SSO plugin. > The server works fine and ids all users... Only the slaves can not start yo > work. > > Any thoughts? > > With many thanks in advance. > Daniel Beck <[email protected]>: May 01 01:37PM +0200 > > > On 01.05.2016, at 10:54, Sharon Yanko <[email protected]> wrote: > > > Any thoughts? > > Looks like a bug in the Negotiate SSO plugin that doesn't consider that path > to be unprotected: > https://github.com/jenkinsci/negotiatesso-plugin/blob/master/src/main/java/com/github/farmgeek4life/jenkins/negotiatesso/NegSecFilter.java#L140...L151 > Back to top > Running long jenkins jobs ssh times out > Pradeep Patra <[email protected]>: Apr 30 10:42PM -0700 > > Hi all, > I am new to Jenkins. I have to copy a big file through ssh to the node > from Jenkins master (no Jenkins slaves setup as yet) and move the files to > a temp directory. The problem is the ssh times out and my testcase fails. > Is there a way to overcome this issue ? I was planning to use different > Jenkins Slave to run the long running tests but that will also suffer the > same problem. > > Any Clue or Suggestions Please? > > Regards > Pradeep > Back to top > How to group jobs into project in Jenkins > Tony <[email protected]>: Apr 30 07:34PM -0700 > > Hi, > > Does anyone know how to group jobs into project in Jenkins? Also, is there > any plugin to display such projects (which consist of jobs) in Jenkin > Dashboard? > > Thanks! > Tony > Back to top > Jenkins pipeline - Remove @tmp folder > Camilo Nova <[email protected]>: Apr 30 02:50PM -0700 > > Hi, > > I'm using the pipeline and when it finishes it leaves an empty folder > 'my-project@tmp' and I don't want to leave it there. > > There is a way to disable the folder generation? Maybe using /tmp > > There is a way to tell the pipeline to remove that folder after it finishes? > > This is my pipeline: > > stage 'test' > node('unix') { > checkout scm > stash inludes: '**', name: 'source' > > sh ''' > virtualenv --python=python2.7 .env > . .env/bin/activate > pip install -r requirements.txt > ./manage.py test --failfast > ''' > } > > As far as I read seems the 'sh' command creates the directory, but I want > to remove it after it finishes or to set a different tmp folder path. > > Thanks. > Back to top > Best practices for Jenkins slave disk layout > yeayu <[email protected]>: Apr 30 09:31AM -0700 > > Hello all, > > I am just starting with Jenkins (Master/Slave mode) and I would like to > know whether there is any best practices in regards setting up the disk > layout of jenkins slave linux nodes. > I have seen examples where people simply use /home/jenkins as their remote > FS root, but it this the right thing to do? what about /var/jenkins or > /workspace? > > I assume jenkins will work perfectly no matter what directory its defined > in the slave, but I would like to know what's the common setting for this > across the members of the community. > > Thanks in advance. > Jakov Sosic <[email protected]>: Apr 30 08:54PM +0200 > > On 04/30/2016 06:31 PM, yeayu wrote: > > > I assume jenkins will work perfectly no matter what directory its > > defined in the slave, but I would like to know what's the common setting > > for this across the members of the community. > > > I personally use /home/jenkins, with workspaces on non-root block device > (either whole /home is on sdb or there is bind mount for > /home/jenkins/whatever). > > But does it really matter? :) It doesn't affect performance in any way, > it's only cosmetics, so really, do it as you please. Just document it so > that your colleges can administer it once you're gone. > > > > More interesting question would be what kind of block storage and what > filesystems are best for jenkins slaves - assuming large git > repositories operations (bunch of small files and random io)... Do you > guys use ext3, ext4, xfs? Or maybe FreeBSD slaves with ZFS? > Back to top > You received this digest because you're subscribed to updates for this group. > You can change your settings on the group membership page. > To unsubscribe from this group and stop receiving emails from it send an > email to [email protected]. -- 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 [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-users/6DCA0D9D-13BB-4390-B089-E4F5F36E1C77%40gmail.com. For more options, visit https://groups.google.com/d/optout.
