Re: I would like to downgrade the version of Python that Jenkins is using.

2018-05-18 Thread Cuong Tran
I don't believe Jenkins uses python.

On Monday, May 14, 2018 at 9:41:13 AM UTC-7, Patricia Sandt wrote:
>
> The Ubuntu 16.04 version of Python is 2.7. My build depends on this. 
> Jenkins is apparently using a newer version (3?), which doesn't work with 
> _html5lib.py in my build. Is there a way to force Jenkins to use a 
> particular version of Python?
>
>

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/56f64b31-1f5c-4086-8ab6-f742a0e13c80%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: How to create a pipeline job from inside a jenkinsfile?

2018-05-18 Thread Cuong Tran
Yes, you can use the job-dsl plugin (https://plugins.jenkins.io/job-dsl) to 
do that.

On Friday, May 18, 2018 at 2:00:45 AM UTC-7, John Lonergan wrote:
>
> Is it possible to create a multiranch pipeline job from a script in 
> another pipeline job.
> All driven by Jenkinsfiles?
>

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/2ef3b69f-1b60-45b7-a637-9997313e1e25%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Is there a way to figure out artifactName in jenkins pipeline without specifying it in the Jenkinsfile?

2018-05-18 Thread Brian Benson
can you give an example of what you are trying to do?

On Thursday, May 10, 2018 at 8:12:45 AM UTC-6, krish wrote:
>
> Is there a way to figure out artifactName in jenkins pipeline without 
> specifying it in the Jenkinsfile?
>

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/021c0e6a-f488-450a-84ed-894a35cb136d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Jenkins Sonar Plugin groovy script

2018-05-18 Thread Eric Pyle
Here again the error message is pretty clear. Groovy can't find the object
"desc". Judging by the name, this is probably a Descriptor you are looking
for. You set the variable "global" as an instance of SonarGlobalConfiguration,
a subclass of Descriptor, using getDescriptorByType():

SonarGlobalConfiguration global = Hudson.instance.getDescriptorByType(
SonarGlobalConfiguration.class)

Perhaps you should name that variable "desc", like this:

SonarGlobalConfiguration desc =  Hudson.instance.getDescriptorByType(
SonarGlobalConfiguration.class)

Then you will have a valid object "desc" for later on in your script. Refer
to http://javadoc.jenkins.io/plugin/sonar/ and http://javadoc.jenkins.io/.

-Eric



On Fri, May 18, 2018 at 4:23 PM, naveen  wrote:

> Hello, Thanks for replaying me back.  Tried with your suggestion got new
> error
>
>
>
>
>
>
>
>
> ERROR: Unexpected exception occurred while performing groovy command.
>
> groovy.lang.MissingPropertyException: No such property: desc for class:
> RemoteClass
>
> at org.codehaus.groovy.runtime.ScriptBytecodeAdapter.unwrap(Scr
> iptBytecodeAdapter.java:53)
>
> at org.codehaus.groovy.runtime.callsite.PogoGetPropertySite.get
> Property(PogoGetPropertySite.java:52)
>
> at org.codehaus.groovy.runtime.callsite.AbstractCallSite.callGr
> oovyObjectGetProperty(AbstractCallSite.java:307)
>
> at RemoteClass.run(RemoteClass:17)
>
> at groovy.lang.GroovyShell.runScriptOrMainOrTestOrRunnable(Groo
> vyShell.java:263)
>
> at groovy.lang.GroovyShell.run(GroovyShell.java:518)
>
> at groovy.lang.GroovyShell.run(GroovyShell.java:497)
>
> at hudson.cli.GroovyCommand.run(GroovyCommand.java:89)
>
> at hudson.cli.CLICommand.main(CLICommand.java:278)
>
> at hudson.cli.CliManagerImpl.main(CliManagerImpl.java:95)
>
> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
>
> at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAcce
> ssorImpl.java:62)
>
> at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMe
> thodAccessorImpl.java:43)
>
> at java.lang.reflect.Method.invoke(Method.java:498)
>
> at hudson.remoting.RemoteInvocationHandler$RPCRequest.perform(R
> emoteInvocationHandler.java:927)
>
> at hudson.remoting.RemoteInvocationHandler$RPCRequest.call(Remo
> teInvocationHandler.java:901)
>
> at hudson.remoting.RemoteInvocationHandler$RPCRequest.call(Remo
> teInvocationHandler.java:850)
>
> at hudson.remoting.UserRequest.perform(UserRequest.java:210)
>
> at hudson.remoting.UserRequest.perform(UserRequest.java:53)
>
> Something wrong in code i'm missing that.
>
> On Friday, May 18, 2018 at 12:06:12 PM UTC-7, naveen wrote:
>>
>> When I tried to configure Sonar plugin using following script throwing me
>> an error.
>>
>>
>>
>>
>>
>>
>>
>>
>> import jenkins.model.*
>>
>> import hudson.plugins.sonar.*
>>
>> import hudson.plugins.sonar.model.*
>>
>>
>>
>> def inst = Jenkins.getInstance()
>>
>> SonarGlobalConfiguration global = Hudson.instance.getDescriptorByType(
>> SonarGlobalConfiguration.class)
>>
>> def sinst = new SonarInstallation(
>>
>>   "sonar",
>>
>>   "http://localhost:9000/;,
>>
>>   "yy",
>>
>>   "3.2",
>>
>>   "",
>>
>>   new TriggersConfig(),
>>
>>   ""
>>
>> )
>>
>> desc.setInstallations(sinst)
>>
>>
>>
>> desc.save()
>>  ERROR
>>
>>
>>
>>
>>
>>
>>
>>
>> ERROR: Unexpected exception occurred while performing groovy command.
>>
>> groovy.lang.MissingPropertyException: No such property: Hudson for class:
>> RemoteClass
>>
>> at org.codehaus.groovy.runtime.ScriptBytecodeAdapter.unwrap(Scr
>> iptBytecodeAdapter.java:53)
>>
>> at org.codehaus.groovy.runtime.callsite.PogoGetPropertySite.get
>> Property(PogoGetPropertySite.java:52)
>>
>> at org.codehaus.groovy.runtime.callsite.AbstractCallSite.callGr
>> oovyObjectGetProperty(AbstractCallSite.java:307)
>>
>> at RemoteClass.run(RemoteClass:6)
>>
>> at groovy.lang.GroovyShell.runScriptOrMainOrTestOrRunnable(Groo
>> vyShell.java:263)
>>
>> at groovy.lang.GroovyShell.run(GroovyShell.java:518)
>>
>> at groovy.lang.GroovyShell.run(GroovyShell.java:497)
>>
>> at hudson.cli.GroovyCommand.run(GroovyCommand.java:89)
>>
>> at hudson.cli.CLICommand.main(CLICommand.java:278)
>>
>> at hudson.cli.CliManagerImpl.main(CliManagerImpl.java:95)
>> Could someone help me in solving this script. It might be an constructor
>> issue.
>>
>> Thanks!
>>
>>
>> --
> 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.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/jenkinsci-users/c8008fc7-d29e-45d1-bb1a-8761db887404%40googlegroups.
> com
> 

Re: Jenkins Sonar Plugin groovy script

2018-05-18 Thread naveen
Thanks so much! well it worked 








import jenkins.model.*

import hudson.plugins.sonar.*

import hudson.plugins.sonar.model.*

import hudson.model.*



def inst = Jenkins.getInstance()

SonarGlobalConfiguration global = Hudson.instance.getDescriptorByType(
SonarGlobalConfiguration.class)

def sinst = new SonarInstallation(

  "sonar",

  "http://localhost:9000/;,

  "yy",

  "3.2",

  "",

  new TriggersConfig(),

  ""

)

global.setInstallations(sinst)



global.save()



On Friday, May 18, 2018 at 1:42:19 PM UTC-7, Victor Martinez wrote:
>
> Well.. the stacktrace message is quite clear:
>
> groovy.lang.MissingPropertyException: No such property: desc for class: 
> RemoteClass
>
>
> Worth to look for where 'desc' is declared/instanced as it's not part of 
> the snippet you pasted it. Likely you could find some answers in this code:
> - 
> https://github.com/hayderimran7/useful-jenkins-groovy-init-scripts/blob/master/sonar-artifactory-settings.groovy
>
> Cheers
>

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/b1877ef6-cf97-4b09-b6fe-78afd8d72af8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Jenkins Sonar Plugin groovy script

2018-05-18 Thread Victor Martinez
Well.. the stacktrace message is quite clear:

groovy.lang.MissingPropertyException: No such property: desc for class: 
RemoteClass


Worth to look for where 'desc' is declared/instanced as it's not part of 
the snippet you pasted it. Likely you could find some answers in this code:
- 
https://github.com/hayderimran7/useful-jenkins-groovy-init-scripts/blob/master/sonar-artifactory-settings.groovy

Cheers

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/7e060714-eb9a-4dd9-a3b7-cb03d07a697e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Jenkins Sonar Plugin groovy script

2018-05-18 Thread naveen
By chance could review the code once, any suggestions.

On Friday, May 18, 2018 at 1:24:10 PM UTC-7, naveen wrote:
>
>
>
>
>
>
>
>
>
>
> ERROR: Unexpected exception occurred while performing groovy command.
>
> groovy.lang.MissingPropertyException: No such property: desc for class: 
> RemoteClass
>
> at org.codehaus.groovy.runtime.ScriptBytecodeAdapter.unwrap(
> ScriptBytecodeAdapter.java:53)
>
> at org.codehaus.groovy.runtime.callsite.PogoGetPropertySite.
> getProperty(PogoGetPropertySite.java:52)
>
> at org.codehaus.groovy.runtime.callsite.AbstractCallSite.
> callGroovyObjectGetProperty(AbstractCallSite.java:307)
>
> at RemoteClass.run(RemoteClass:17)
>
> at groovy.lang.GroovyShell.runScriptOrMainOrTestOrRunnable(
> GroovyShell.java:263)
>
> at groovy.lang.GroovyShell.run(GroovyShell.java:518)
>
> at groovy.lang.GroovyShell.run(GroovyShell.java:497)
>
> at hudson.cli.GroovyCommand.run(GroovyCommand.java:89)
>
> at hudson.cli.CLICommand.main(CLICommand.java:278)
>
> at hudson.cli.CliManagerImpl.main(CliManagerImpl.java:95)
>
> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
>
> at sun.reflect.NativeMethodAccessorImpl.invoke(
> NativeMethodAccessorImpl.java:62)
>
> at sun.reflect.DelegatingMethodAccessorImpl.invoke(
> DelegatingMethodAccessorImpl.java:43)
>
> at java.lang.reflect.Method.invoke(Method.java:498)
>
> at hudson.remoting.RemoteInvocationHandler$RPCRequest.perform(
> RemoteInvocationHandler.java:927)
>
> at hudson.remoting.RemoteInvocationHandler$RPCRequest.call(
> RemoteInvocationHandler.java:901)
>
> at hudson.remoting.RemoteInvocationHandler$RPCRequest.call(
> RemoteInvocationHandler.java:850)
>
> at hudson.remoting.UserRequest.perform(UserRequest.java:210)
>
> at hudson.remoting.UserRequest.perform(UserRequest.java:53)
>
>
> On Friday, May 18, 2018 at 1:23:46 PM UTC-7, naveen wrote:
>>
>> Hello, Thanks for replaying me back.  Tried with your suggestion got new 
>> error 
>>
>>
>>
>>
>>
>>

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/ab7ec877-2afc-4eb2-9ff5-0104337de702%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Jenkins Sonar Plugin groovy script

2018-05-18 Thread naveen









ERROR: Unexpected exception occurred while performing groovy command.

groovy.lang.MissingPropertyException: No such property: desc for class: 
RemoteClass

at org.codehaus.groovy.runtime.ScriptBytecodeAdapter.unwrap(
ScriptBytecodeAdapter.java:53)

at org.codehaus.groovy.runtime.callsite.PogoGetPropertySite.
getProperty(PogoGetPropertySite.java:52)

at org.codehaus.groovy.runtime.callsite.AbstractCallSite.
callGroovyObjectGetProperty(AbstractCallSite.java:307)

at RemoteClass.run(RemoteClass:17)

at groovy.lang.GroovyShell.runScriptOrMainOrTestOrRunnable(
GroovyShell.java:263)

at groovy.lang.GroovyShell.run(GroovyShell.java:518)

at groovy.lang.GroovyShell.run(GroovyShell.java:497)

at hudson.cli.GroovyCommand.run(GroovyCommand.java:89)

at hudson.cli.CLICommand.main(CLICommand.java:278)

at hudson.cli.CliManagerImpl.main(CliManagerImpl.java:95)

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

at sun.reflect.NativeMethodAccessorImpl.invoke(
NativeMethodAccessorImpl.java:62)

at sun.reflect.DelegatingMethodAccessorImpl.invoke(
DelegatingMethodAccessorImpl.java:43)

at java.lang.reflect.Method.invoke(Method.java:498)

at hudson.remoting.RemoteInvocationHandler$RPCRequest.perform(
RemoteInvocationHandler.java:927)

at hudson.remoting.RemoteInvocationHandler$RPCRequest.call(
RemoteInvocationHandler.java:901)

at hudson.remoting.RemoteInvocationHandler$RPCRequest.call(
RemoteInvocationHandler.java:850)

at hudson.remoting.UserRequest.perform(UserRequest.java:210)

at hudson.remoting.UserRequest.perform(UserRequest.java:53)


On Friday, May 18, 2018 at 1:23:46 PM UTC-7, naveen wrote:
>
> Hello, Thanks for replaying me back.  Tried with your suggestion got new 
> error 
>
>
>
>
>
>

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/39f1f8e0-1182-45cb-a4db-caebb5cf3390%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Jenkins Sonar Plugin groovy script

2018-05-18 Thread Eric Pyle
Hi Naveen,

It looks like you need to import hudson.model.* to get class Hudson.

Eric

On Fri, May 18, 2018 at 2:25 PM, naveen  wrote:

> When I tried to configure Sonar plugin using following script throwing me
> an error.
>
>
>
>
>
>
>
>
> import jenkins.model.*
>
> import hudson.plugins.sonar.*
>
> import hudson.plugins.sonar.model.*
>
>
>
> def inst = Jenkins.getInstance()
>
> SonarGlobalConfiguration global = Hudson.instance.getDescriptorByType(
> SonarGlobalConfiguration.class)
>
> def sinst = new SonarInstallation(
>
>   "sonar",
>
>   "http://localhost:9000/;,
>
>   "yy",
>
>   "3.2",
>
>   "",
>
>   new TriggersConfig(),
>
>   ""
>
> )
>
> desc.setInstallations(sinst)
>
>
>
> desc.save()
>  ERROR
>
>
>
>
>
>
>
>
> ERROR: Unexpected exception occurred while performing groovy command.
>
> groovy.lang.MissingPropertyException: No such property: Hudson for class:
> RemoteClass
>
> at org.codehaus.groovy.runtime.ScriptBytecodeAdapter.unwrap(Scr
> iptBytecodeAdapter.java:53)
>
> at org.codehaus.groovy.runtime.callsite.PogoGetPropertySite.get
> Property(PogoGetPropertySite.java:52)
>
> at org.codehaus.groovy.runtime.callsite.AbstractCallSite.callGr
> oovyObjectGetProperty(AbstractCallSite.java:307)
>
> at RemoteClass.run(RemoteClass:6)
>
> at groovy.lang.GroovyShell.runScriptOrMainOrTestOrRunnable(Groo
> vyShell.java:263)
>
> at groovy.lang.GroovyShell.run(GroovyShell.java:518)
>
> at groovy.lang.GroovyShell.run(GroovyShell.java:497)
>
> at hudson.cli.GroovyCommand.run(GroovyCommand.java:89)
>
> at hudson.cli.CLICommand.main(CLICommand.java:278)
>
> at hudson.cli.CliManagerImpl.main(CliManagerImpl.java:95)
> Could someone help me in solving this script. It might be an constructor
> issue.
>
> Thanks!
>
>
> --
> 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.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/jenkinsci-users/7b3e5b1f-f8e4-4fcb-8cfd-c6822d573175%40googlegroups.
> com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>



-- 
*Eric Pyle*
Siemens PLM Software
Lebanon, New Hampshire
+1 603-277-3060 (T)
eric.p...@siemens.com
http://www.siemens.com

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/CAPrXuH3R1ZxOEW1TTVvFvFhtVGnxB5v9q_60mDL0j6DSnH7uoQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: POSTing zip file using httpRequest in Jenkinsfile

2018-05-18 Thread prasad venkata ramasatya Nandagiri
Please let me know, if the issue had been resolved.

On Monday, 30 January 2017 16:04:13 UTC-5, Christopher Burke wrote:
>
> Hey everyone
>
>Part of my build pipeline requires that I publish a zip file to a 
> server, so I'm trying the following:
>
> response = httpRequest httpMode: 'POST', contentType: 
> 'APPLICATION_OCTETSTREAM', body:"...", url: "${urlForPublish}"
>
>I'm not sure how to specify the body correctly, though. Could anyone 
> point me to an example or offer any suggestions? In the meantime, I've 
> worked around this by using curl, but it seems like using the httpRequest 
> step would be preferable.
>
>Thanks,
>
>--- Chris
>
>
>

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/ea86778d-7998-4cc0-8ce2-e1253b014ea3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: SSH deploy key needed for?

2018-05-18 Thread Mark Waite
No, ssh keys are not used in http or https.

Mark Waite

On Fri, May 18, 2018 at 3:00 AM Tekk nj  wrote:

> Do I need to use my SSH public key in GitLab as a deploy to make a HTTP
> and HTTPS connection between my Jenkins project and the GitLab repo?
>
> --
> 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.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/jenkinsci-users/fff96124-35da-466b-84ef-ac8ec0c908a8%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/CAO49JtErFQXFO%3D-oqgPFUJRu7CPx0xqcKH1M0uwyVBFRi6gmAQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Dynamic choice in declarative pipeline

2018-05-18 Thread Jes Struck
Hi all,

I currently working on a migrating to Jenkins Declarative Pipeline, and I'm
seems to be stuck on a missing feature (or at least i can't find the
documentation).

My goal is to have two parameters, where the selection of param-A is used
the generate the list of options to param-B, says
param-A: ["equal", "unequal"]
param-B: [1,2,3,4,5,6,7,8,9, ]

and when i chose *equal* for param-A, i want to only show options
2,4,6,8... in the drop-down of param-B.

Firstly the parameters{} block only updates the job parameters, after the
Job has initialized (I don't know why), and secondly i can't see anyway to
do a filter on param-B after param-A has had a select?

I'm running on Jenkins 2.73.3 and Blue Ocean 1.0.0.

I hope, my question is clear, and i hope to hear from you all :)



-- 
/Jes

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/CACfmdz0K63217tLJdAYkHMWSZq309fCDse8R-gF2%3DQJJ_cuHRw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: Jenkins - SoapUI integration

2018-05-18 Thread yotam . cohen
You might be missing a closing " after the testrunner.bat file name?
"filename.bat" -arg 1 -arg 2

On Friday, 18 May 2018 10:59:55 UTC+2, AnuR wrote:
>
> Hi
>
> Am new to Jenkins and am trying to execute a windows command line to 
> execute my SoapUI test cases. 
> I just downloaded and installed Jenkins on my machine and created a new 
> Jenkins free style project and provided my command (the command line 
> execution path from SOAPUI)  in Build path. 
>
> when I run the build, am facing the following error.. 
>
> Building in workspace C:\Program Files (x86)\Jenkins\workspace\test
> [test] $ cmd /c call C:\WINDOWS\TEMP\jenkins6336379742679076732.bat
>
> C:\Program Files (x86)\Jenkins\workspace\test>"C:\Program 
> Files\SmartBear\ReadyAPI-2.3.0\bin\testrunner.bat -sTestSuite 1 -RTestSuite 
> Report -EDefault environment C:\Users\user\Desktop\Prefill-QA.xml
> The filename, directory name, or volume label syntax is incorrect.
>
> C:\Program Files (x86)\Jenkins\workspace\test>exit 123 
> Build step 'Execute Windows batch command' marked build as failure
> Finished: FAILURE
>
>
> I tried googling and could find no solution. Can someone please help me 
> fixing this. 
>
>
>

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/e7812252-8d50-4ccb-9e87-0169b1a9c443%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Can't make HTTP or HTTPS connection to local GitLab Server

2018-05-18 Thread Tekk nj
Running the latest versions of both Jenkins and GitLab CE. I have 
successfully connected my build job using SSH to my GitLab server. I also 
want to make the connection with either HTTP or HTTPS. With either, the 
connection fails with a 404 or 504 error. I have no idea want is happening 
underneath. I thought it would transparent since I initially made HTTPS 
connection to my GitLab repos over the cloud at GitLab.com. What step(s) 
have I missed? Thanks

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/42ddc052-0061-4f5a-9319-18574e2780ca%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


SSH deploy key needed for?

2018-05-18 Thread Tekk nj
Do I need to use my SSH public key in GitLab as a deploy to make a HTTP and 
HTTPS connection between my Jenkins project and the GitLab repo?

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/fff96124-35da-466b-84ef-ac8ec0c908a8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


How to create a pipeline job from inside a jenkinsfile?

2018-05-18 Thread John Lonergan
Is it possible to create a multiranch pipeline job from a script in another 
pipeline job.
All driven by Jenkinsfiles?

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/4507106a-64c5-454b-bcfc-fcbe65a1992b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Bitbucket PR in Jenkins Blue Ocean

2018-05-18 Thread rahulkumar . sahotay
Hello Everyone:

I would like to trigger a blueOcean build from Bitbucket Pull request 
notification(
https://marketplace.atlassian.com/apps/1213177/pull-request-notifier-for-bitbucket?hosting=server=overview
).

It is working in Classic Jenkins but not with BlueOcean.

Can you suggest me how to get this working?

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/2b5ccd39-0c44-4797-9cd8-49fceec40819%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Steps to Test "Circuit" of Projects

2018-05-18 Thread Paul Dimitriu
Good morning,

I have a project that has multiple steps to it.

Step 1 (do something) - send request ---> Step 2 - send request 
> Step 3  send request > Step N  --> Return results to 
> Step 1 for validation

Basically, I need to test the circuit from / back to Step 1

I was thinking of setting up several slaves for (step 2 - N), using Step 1 
as the master. Unfortunately we cannot use Docker.

Is this the correct way of thinking of this? Any thoughts would be much 
appreciated.

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/647c5305-c84e-4c8b-a671-6817d1e7fb29%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Start https server through batch file in the background

2018-05-18 Thread Alice G
Hey, I need so start and https server by starting a batch file. However, 
while it keeps running, Jenkins should continue and run my UI-tests. Once 
they're finished, the batch file should be stopped. Does anyone know how 
this is possible? Thanks.

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/7b27b88e-41c4-42e7-8c04-7e00d72a7bb2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Jenkins - SoapUI integration

2018-05-18 Thread AnuR
Hi

Am new to Jenkins and am trying to execute a windows command line to 
execute my SoapUI test cases. 
I just downloaded and installed Jenkins on my machine and created a new 
Jenkins free style project and provided my command (the command line 
execution path from SOAPUI)  in Build path. 

when I run the build, am facing the following error.. 

Building in workspace C:\Program Files (x86)\Jenkins\workspace\test
[test] $ cmd /c call C:\WINDOWS\TEMP\jenkins6336379742679076732.bat

C:\Program Files (x86)\Jenkins\workspace\test>"C:\Program 
Files\SmartBear\ReadyAPI-2.3.0\bin\testrunner.bat -sTestSuite 1 -RTestSuite 
Report -EDefault environment C:\Users\user\Desktop\Prefill-QA.xml
The filename, directory name, or volume label syntax is incorrect.

C:\Program Files (x86)\Jenkins\workspace\test>exit 123 
Build step 'Execute Windows batch command' marked build as failure
Finished: FAILURE


I tried googling and could find no solution. Can someone please help me fixing 
this. 


-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/953d83b6-1a7a-4724-93cb-974b27c314c0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.