Re: wget post-data purpose

2015-06-05 Thread Daniel Beck
On 05.06.2015, at 01:14, Benjamin Todd benjamin.todd@gmail.com wrote: I believe using --post-data forces wget to POST as opposed to GET, but is the content it posts actually used? If so, how since it appears to just be a change list? Jenkins needs this to compare the URLs checked out

jenkins with groovy postbuild .Not able to execute anything in groovy script field

2015-06-05 Thread apoorva s
https://lh3.googleusercontent.com/-sadaVwZE47k/VXE_o5PYcCI/A4U/XrtrkpUi8OI/s1600/1.PNG https://lh3.googleusercontent.com/-8oHNerFcYX8/VXE_pP-7_iI/A4Y/4Hl-jK9L5Gg/s1600/2.PNG https://lh3.googleusercontent.com/-sadaVwZE47k/VXE_o5PYcCI/A4U/XrtrkpUi8OI/s1600/1.PNG

Free Style- Job + Maven3-Artifactory Integration

2015-06-05 Thread Consti J
Hello, I've configured my Jenkins do build and upload projects to Artifactory. For some projects however, I need to use the Free Style - Job, instead of the Maven Job (JDK Versions differs for the project). I',m using the Options:

Re: Running multiple build steps in a single job

2015-06-05 Thread Rohit Sharma
Hi I tried the conditional build step plugin but it is not marking the build as failure if the condition got failed. Thanks Rohit On Thursday, 4 June 2015 21:11:32 UTC+5:30, Rohit Sharma wrote: Hi I need ti run multiple build steps in a single job on condition basis i.e. if the first

Re: wget post-data purpose

2015-06-05 Thread Benjamin Todd
When I run `svnlook changed --revision ${REV} ${REPO}`, it returns something similar to the following: A path/to/new/file/test_138 A path/to/new/file/test_139 So does Jenkins use this information from --post-data to determine which jobs to build? From above it would look for jobs with

Configure a list of servers as a single entity

2015-06-05 Thread ahart
So there is likely a way to do this or a plugin that handles this already, but I have been unsuccessful at finding one. Perhaps I am not searching for the right key words. Firstly, i would like to clearly state that I am attempting to use jenkins as an automated install server. Going out and

Javascript Webdriver (Chrome)

2015-06-05 Thread simon drake
Hi all, I have recently built a 'test pack', which uses Javascript Webdriver and Chromedriver, which all successfully runs from my local machine. I have then committed it up to Github and am attempting to use it through Jenkins; here starts the problems! A new 'freestyle project' has been

Re: wget post-data purpose

2015-06-05 Thread Daniel Beck
This is how it parses the text: https://github.com/jenkinsci/subversion-plugin/blob/master/src/main/java/hudson/scm/SubversionRepositoryStatus.java#L102..L106 So, no, it cannot use a different delimiter. Do you check in files that have newlines as part of the filename, and they get broken into

Re: Javascript Webdriver (Chrome)

2015-06-05 Thread Richard Bywater
You haven't said what OS you are using - without that info it's a little hard to guess as what issue you might be hitting :) Richard On 10:10PM, Fri, 5/06/2015 simon drake simondrake1...@googlemail.com wrote: Hi all, I have recently built a 'test pack', which uses Javascript Webdriver and

Re: Matrix Project Plugin configuration storage

2015-06-05 Thread Baptiste Mathus
IMO a use case for the job DSL plugin. See https://github.com/jenkinsci/job-dsl-plugin/wiki/Job-reference and look for matrix job. Cheers Le 4 juin 2015 5:11 PM, Hugo M ham1...@gmail.com a écrit : Hello guys, Does anyone knows how the Matrix Project Plugin configuration is stored? I want to

Re: Running multiple build steps in a single job

2015-06-05 Thread Eric Pyle
I think you would have to set this up in a script and just call the script from Jenkins. Especially if you need to perform a clean-up action if one step fails. It could be a shell script, or you could look into Workflow. Regards, Eric On 6/5/2015 6:57 AM, Rohit Sharma wrote: Hi I tried the