Re: Using @grab to fetch SNAPSHOT jar in groovy sometimes can't be recoganized correctly if updating the SNAPSHOT

2018-11-02 Thread pan
Updates: It might not be a good idea to use @grab in Jenkins pipeline script. We also found an issue about this: https://issues.jenkins-ci.org/browse/JENKINS-48974, this will cause the parallel jobs which @grab the same direct/indirect dependencies failed. It seems related to the groovy/ivy is

Re: Jenkins to run selenium scripts

2018-11-02 Thread Jan Monterrubio
Yes, you can probably add the windows machine as an agent and have it configured to build jobs with a label WINDOWS. Jenkins will ssh or rdp to the node for you On Fri, Nov 2, 2018 at 13:26 maninadh golla wrote: > Hello All, > > > My team have asked me to integrate selenium scripts with jenkins.

Jenkins to run selenium scripts

2018-11-02 Thread maninadh golla
Hello All, My team have asked me to integrate selenium scripts with jenkins. There is a dedicated windows server which QA team is using to run selenium scripts. So i am just wondering if there is a way to log into that windows machine and run the scripts through Jenkins. Your reply will be h

Re: Help: Jenkins builds ONLY on master OR slave

2018-11-02 Thread Ivan Fernandez Calvo
You can make it with a pipeline with 2 stages in parallel with the same steps and different nodes somethinlike this pipeline{ stages { stage(‘parallel’) { parallel { stage(‘master’){ agent { label ‘master’} steps{ //steps } } stage(‘agen

Re: threadExecutorNumber must be at least 1 error with JIRA plugin v3.04 and Jenkins v2.138.2

2018-11-02 Thread 'David Brown' via Jenkins Users
Apologies, plugin version should read JIRA plugin v3.0.4 On Friday, 2 November 2018 16:30:49 UTC, David Brown wrote: > > Hello. I'm facing an issue with the JIRA plugin. Associated cases are > correctly getting updated but the JIRA Issue links in build Changelog are > not rendering correctly as

threadExecutorNumber must be at least 1 error with JIRA plugin v3.04 and Jenkins v2.138.2

2018-11-02 Thread 'David Brown' via Jenkins Users
Hello. I'm facing an issue with the JIRA plugin. Associated cases are correctly getting updated but the JIRA Issue links in build Changelog are not rendering correctly as hyplerlinks. As a first step in trying to debug this I have tried "Validate Settings" in the JIRA section of Manage Jenkins

Pipeline Authoring SIG is now live!

2018-11-02 Thread Andrew Bayer
https://jenkins.io/sigs/pipeline-authoring/ - tada! If you'd like to participate, you can join the mailing list ( jenkins-pipeline-authoring-...@googlegroups.com) and/or the Gitter chat ( https://gitter.im/jenkinsci/pipeline-authoring-sig). A. -- You received this message because you are subscr

Re: Alternative to specifying branch/tag/version in library identifier

2018-11-02 Thread Jan Monterrubio
What’s the .pkg.pkg for? Usually I’ve seen the import as: @Library('my-shared-library') _ On Fri, Nov 2, 2018 at 09:19 wrote: > Up to now, I've followed the documentation of specifying the > branch/tag/version to checkout from Git for shared library using identifer: > 'thing@version' >

Re: Help: Jenkins builds ONLY on master OR slave

2018-11-02 Thread Jan Monterrubio
When the job builds on the slave agent, does it not build concurrently with one executor on the master and one on the slave? On Fri, Nov 2, 2018 at 02:22 wrote: > Hi > > I got two machines with Win10. One is jenkins' master and the other is > slave. Both are shown as online in dashboard. > > Bot

Alternative to specifying branch/tag/version in library identifier

2018-11-02 Thread afeller
Up to now, I've followed the documentation of specifying the branch/tag/version to checkout from Git for shared library using identifer: 'thing@version' approach, however I suspect this causes issues when

Re: Pod still released after "Pod Retention" set to "On Failure" for Kubernetes Plugin

2018-11-02 Thread Carlos Sanchez
When you say "pod still released" what do you mean? the retention means the pod will not be deleted in k8s but not used by jenkins On Fri, Nov 2, 2018 at 9:58 AM Evan wrote: > Jenkins 2.138.2 > > Kubernetes Plugin 1.13.2 > > > > When using kubernetes plugin to dynamically provision Jenkins slave

Pod still released after "Pod Retention" set to "On Failure" for Kubernetes Plugin

2018-11-02 Thread Evan
Jenkins 2.138.2 Kubernetes Plugin 1.13.2 When using kubernetes plugin to dynamically provision Jenkins slave, the needs now is to reserve workspace of Jenkins slave when the job failed, "Pod Retention" seems to be useful. When "Pod Retention" is set to "Always", after job finished, th

Help: Jenkins builds ONLY on master OR slave

2018-11-02 Thread firstrose
Hi I got two machines with Win10. One is jenkins' master and the other is slave. Both are shown as online in dashboard. Both node are configured as 'Use this node as much as possible'. My Project is configured as 'Execute concurrent builds if necessary'. I want to build the project on master A