No more PR build after latest upgrades for BitBucket branch source plugin(2.2.3) and its BB side webhook

2017-10-09 Thread Dan Tran
Hi Under what condition and setting would trigger this issue? I used to have both branch and pr build trigger for every change after PR is filed Perhaps the PR event is redundant and no need for trigger? Thanks -Dan [1]

Re: http_proxy is not taked in account in pipeline step env

2017-10-09 Thread Michael Pailloncy
Hey Aurélie, I've tested with this pipeline (derived from yours) and I'm not able to reproduce your issue : pipeline { agent any environment { http_proxy = 'http://xxx:xxx' TOTO='titi' } stages { stage('xxx') { when { expression { true } }

Re: Is there a way of cloning the repo an additional layer down?

2017-10-09 Thread Chris Foran
Good point. I would rather have it in the Jenkinsfile. Thanks. On Fri, Oct 6, 2017 at 5:06 PM, Mark Waite wrote: > > > On Fri, Oct 6, 2017 at 2:24 PM dandeliondodgeball > wrote: > >> Did this two different ways in the same workspace. >>

Re: Trying to use CopyArtifact in declarative pipeline

2017-10-09 Thread Chris Foran
Didn't notice/know that. I will update that page. Thanks. On Sat, Oct 7, 2017 at 3:39 PM, Jon Schewe wrote: > Adding this to the copy artifact plugin page will help others. Those pages > are wikis so you can just login with your Jira credentials and edit. > > On Fri, Oct 6,

Re: Jenkins Multibranch Pipeline and checkout of subversion

2017-10-09 Thread Robert Hales
https://groups.google.com/forum/#!topic/jenkinsci-users/yYeedbtXT4g On Monday, October 9, 2017 at 1:38:24 AM UTC-6, Gilad Baruchian wrote: > > > Did you find any solution for that? I have this problem as well > -- You received this message because you are subscribed to the Google Groups

Re: Major update to Matrix Authorization Plugin on experimental update center

2017-10-09 Thread Daniel Beck
> On 20. Sep 2017, at 09:15, Daniel Beck wrote: > > I just released 2.0-beta-3. > > It includes compatibility with the pipeline `properties()` step. > > I currently plan no further changes before the final 2.0 release. Please help > test this, and file issues as described

Re: Jenkins multibranch checkout

2017-10-09 Thread Mark Waite
If you're using declarative pipeline, then you need to use an option directive to skipDefaultCheckout. Refer to https://jenkins.io/doc/book/pipeline/syntax/#options for the syntax. If you're using scripted pipeline, insert the pre-scm operations before the checkout scm step. Mark Waite On Mon,

2 errors; which is first?

2017-10-09 Thread Andreas Tscharner
Hello World, Setup: master: Jenkins 2.60.3 on Debian 9 agents: Windows 7 in VMs I sometimes have the following error: ERROR: Issue with creating launcher for agent build-vm6. The agent has not been fully initialized yet and then at the end of the console output:

RE: Multibranch checkout for jenkinsfile

2017-10-09 Thread David Aldrich
If I may comment on this, I think the main issue is that there is currently no maintainer for the svn plugin. So, even if someone was able to make the changes Stephen suggested, they may not be released. It’s quite a problem for some of us that Subversion is no longer well supported in

After checkout from repositoy Jenkins will not start Windows batch command

2017-10-09 Thread 'S. G.' via Jenkins Users
I am new to Jenkins. I started with one simple test: I created a freestyle job on a slave/node that checks out my sources from a repository and should does a Windows xcopy from the jenkins repository to a directory. The checkout works - all sources are pulled form the repository to the jenkins

Re: Multibranch checkout for jenkinsfile

2017-10-09 Thread Stephen Connolly
Somebody needs to implement SCMFileSystem for the Subversion plugin. In principle should not be too hard to do. The code is currently using the "old-style" https://github.com/jenkinsci/subversion-plugin/blob/master/src/main/java/jenkins/scm/impl/subversion/SubversionSCMSource.java#L403-L405 so it

http_proxy is not taked in account in pipeline step env

2017-10-09 Thread Aurélie Vache
Hi, I nbeed in a jenkins pipeline to have an access to a http_proxy. In my environment variables in my Jenkinsfile I've etted my http proxy and an env var named TOTO, then in one of my steps I checked if env var exists: environment { ... http_proxy = 'http://xxx:xxx'

Re: Jenkins Multibranch Pipeline and checkout of subversion

2017-10-09 Thread Gilad Baruchian
Did you find any solution for that? I have this problem as well -- 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.

Re: Jenkins Multibranch Pipeline and checkout of subversion

2017-10-09 Thread Gilad Baruchian
Did you find any solution for that? I have this problem as well On Wednesday, February 8, 2017 at 3:16:43 PM UTC+2, Kristian X wrote: > > Hey, > > I think there is something odd with Multibranch plugin or I have done > something wrong. I have a repository: > > > http://svnserver/some/svn/repo

Multibranch checkout for jenkinsfile

2017-10-09 Thread Gilad Baruchian
Hi, I have a Jenkinsfile located in \build folder, and it checks out code to the slave node and builds. My multi branch project finds the branch correctly, but it checks out the entire svn branch on the master just to read the jenkinsfile instead of checking out just the jenkinsfile itself of

Jenkins multibranch checkout

2017-10-09 Thread Gilad Baruchian
Hi, I noticed that when the multi branch job finds a branch to build it automatically checks out or updates the branch before it even starts executing it's Jenkinsfile. This is bad for me because I want to run some commands before the checkout, and only then run the checkout myself in the