Re: Git-client plugin version 2.8.6 breaks authentication on Windows box

2019-10-21 Thread Patrick van der Velde
ver, > assumed that the username and password do not contain Windows special > characters like '%', etc.), what versions of CLI git were failing, what > versions are now working, > > Thanks in advance for providing that information in case other users > encounter the same probl

Re: Git-client plugin version 2.8.6 breaks authentication on Windows box

2019-10-20 Thread Patrick van der Velde
To answer my own question: Updating to the latest version of GIT fixes it. Thanks Mark!!! On Monday, 21 October 2019 15:34:16 UTC+13, Patrick van der Velde wrote: > > Hi > > Our setup > > Server: > - Jenkins 2.190.1 > - Ubuntu 16.04.5 > > Agent > - Jen

Re: Git-client plugin version 2.8.6 breaks authentication on Windows box

2019-10-20 Thread Patrick van der Velde
If your command line git is an older version (before git 2.20), you might > consider updating command line git to the most recent Git for Windows, > 2.23.0. > > On Sun, Oct 20, 2019 at 8:34 PM Patrick van der Velde < > petrikva...@gmail.com > wrote: > >> Hi >> &g

Git-client plugin version 2.8.6 breaks authentication on Windows box

2019-10-20 Thread Patrick van der Velde
Hi Our setup Server: - Jenkins 2.190.1 - Ubuntu 16.04.5 Agent - Jenkins swarm slave - Windows 2016 Source control: - GIT on TFS2018 When running with git-client plugin 2.8.6 we get the following error in the build log Running as SYSTEM [EnvInject] - Loading node environment variable

Create single use nodes

2017-01-09 Thread Patrick van der Velde
Hi all Is it possible for jenkins to use nodes only a for a single job instance? i.e. what I would like is this: * A new job is queued * Jenkins checks the job labels and determines which node template could be used to create a node * Jenkins creates the node from the template and assigns the j

Re: Integrate with external credential stores

2016-06-14 Thread Patrick van der Velde
Anybody have any idea or should I ask on the developer group? On Tuesday, 19 April 2016 07:59:46 UTC+12, Patrick van der Velde wrote: > > Does anybody know if it is possible for the credentials plugin (or any > other plugin) to integrate with external credential stores like Hashicorp

Re: Storing job configurations with source code in VCS

2016-04-20 Thread Patrick van der Velde
t my > pipeline all in the same job config. > > Conceptually, if the Simple Build plugin extension is kept backwards > compatible (which should be doable with good enough unit tests on the > custom plugin), rerunning older builds, even years later, should be > possible. &

Integrate with external credential stores

2016-04-18 Thread Patrick van der Velde
Does anybody know if it is possible for the credentials plugin (or any other plugin) to integrate with external credential stores like Hashicorp Vault (https://www.vaultproject.io/). That way we can store our secrets in one system and have it be used by Jenkins and other parts of our build / te

Re: Storing job configurations with source code in VCS

2016-04-07 Thread Patrick van der Velde
> > Take a look at the SCM Sync configuration plugin > https://wiki.jenkins-ci.org/display/JENKINS/SCM+Sync+configuration+plugin > It allows users to modify their job configuration, but keeps track of the > changes in Git or Subversion. > > -- > Craig > > On We

Re: Storing job configurations with source code in VCS

2016-03-22 Thread Patrick van der Velde
Hi Victor Well that's a good start. Being able to verify that the configuration works is good. However I would really prefer having some kind of UI to create the configurations to make it easier for users to edit their configurations. I'm guessing there are no plug-ins that allow me to achieve

Re: Under Jenkins SignTool Error "No certificates were found", works fine logged on as user

2016-03-09 Thread Patrick van der Velde
We have had the same issue but with our TFS build system and in our case the issue is that the certificate is installed in the machine cert store. Unless the user is an administrator it cannot read from that store normally so we solved it by giving the build server user (which ever user runs the

Storing job configurations with source code in VCS

2016-03-09 Thread Patrick van der Velde
Hi All We are trying to improve our build server setup and are trying to solve the problem that users can change the configuration of their builds through the UI, but those changes are not stored in source control, so it is hard to determine what has changed and who made those changes. Addition

Re: Jenkins new install (win8) fails to display website with HttpParser warning

2014-06-02 Thread Patrick van der Velde
rg/browse/JETTY-336 But I have no idea how to fix that. Thanks Petrik On Monday, 2 June 2014 22:51:55 UTC+12, Richard Bywater wrote: > > What error/output do you get when you try and connect with your browser? > > Richard. > > > On Sat, May 31, 2014 at 11:14 PM, Patrick van

Jenkins new install (win8) fails to display website with HttpParser warning

2014-05-31 Thread Patrick van der Velde
Hi all I've tried to run Jenkins both from the latest/greatest and from the stable version and in both cases Jenkins installs fine (windows installer package) but doesn't show / start the website. The error log has the following data in it: May 31, 2014 10:56:34 PM winstone.Logger logInternal

Re: Jenkins does not discover new versions

2013-05-03 Thread Patrick van der Velde
Hi Mark It's possible that I'm seeing a version of that issue. I'll try updating from one of the mirrors and see what happens. If that all fails then I'll probably just grab the latest version and do a manual install. I think that's possible? Oh and I'm not on a LTS version, I usually update pret

Re: Git publisher fails to push

2013-03-14 Thread Patrick van der Velde
Thanks for the response. At the moment I'm in no great rush so I'll wait a bit for a new version of the Git plugin(s) to be released. Thanks Petrik On Thu, Mar 14, 2013 at 10:27 PM, Mark Waite wrote: > I think you've found a bug in the Git publisher. I see the same behavior > after updating

Re: Build flow plugin: How to copy results from downstream jobs

2013-01-02 Thread Patrick van der Velde
Thanks for that suggestion. One question about the guard statement. Can it handle multiple statements? i.e. is the following allowed? guard { build("job1") build("job2") } rescue { build("finaljob") } or even this guard { parallel( { build("job1a") }, { build("job

Re: Build flow plugin: How to copy results from downstream jobs

2013-01-01 Thread Patrick van der Velde
Hi Mmm ok, I guess I could create a separate job to gather all the test results. Thanks for the advice :) Regards Petrik On Tue, Jan 1, 2013 at 11:08 PM, nicolas de loof wrote: > I recommend to avoid such scripting in the flow DSL, that is only designed > to manage orchestration, not to repla

Re: What is the best way to find out which revisions are in the current build at the start of the build

2012-04-12 Thread Patrick van der Velde
Hi That's what I'm doing at the moment. I'm currently calling http://yourjenkins/job/yourjob/yourrevision/api/xml?tree=changeSet[items[revision,msg]] which gives me an xml block with the revision and the message. However that only works if that build actually thinks it has changes (which it may no