Re: id_rsa" is not a valid key file.

2023-10-10 Thread John Patrick
what about id_rsa.pub I've got; -rw---1 xx xx x id_rsa -rw-r--r--1 xx xxxxx x id_rsa.pub have you tried doing ssh without gerrit, to see if ssh or the gerrit config/setup. On Wed, 11 Oct 2023 at 05:40, praveen@gmail.com < praveen.mulim.

Re: 'mvn' is not recognized as an internal or external command, operable program or batch file.

2023-09-15 Thread John Patrick
Common issues I have to fix for people include; Checking it's on the PATH, so for your example above it would be set PATH=%PATH%;$MAVEN_BIN% Checking it's executable Most of my projects have moved to Maven Wrapper, and developers forgot to check the exec bit is store in git, i.e. git update-inde

Re: Jenkins error when running the project on Mac but not on windows

2023-02-13 Thread John Patrick
Try installing gitbash on the windows machine, then in global configurations define where git is located. I've had similar, as it's trying to access /usr/bin/git which won't exist at that location on windows. On Mon, 13 Feb 2023 at 18:55, Andrei Suslov wrote: > I have two nodes: win and mac. On

Re: substituting different credentials() in a multibranch pipeline depending on branch

2022-11-28 Thread John Patrick
Due to similar issues, I changed how I was doing it from a single MultiBranch project. I've now separate projects for each environment, also use https://plugins.jenkins.io/cloudbees-folder to create prod and dev folders which container the environment specific values. Have a groovy script that crea

Re: checkout a GitHub PR banch on normal pipeline

2022-04-27 Thread John Patrick
So this might be useful to push back to the build status to the PR https://plugins.jenkins.io/pipeline-gitstatuswrapper/ But regarding checking out, I think the standard git checkout would work, but use the source branch url instead of the pr for that. So, something like; ``` git branch: XXX url:

Re: checkout a GitHub PR banch on normal pipeline

2022-04-26 Thread John Patrick
To be clear, are you wanting; 1) github to trigger the job to run for that PR 2) jenkins job to detect PR and run job for that PR John On Tue, 26 Apr 2022 at 00:34, Dan Tran wrote: > Hi > > I have been searching for groovy solution to check out a GH PR to my > Jenkins workspace, so far none o

Re: Alternative for Multiple SCM plugin

2022-04-18 Thread John Patrick
Hi, So using scripted Jenkinsfile. I've setup projects where it loads a file, and checks out those repositories dependencies, if they have a matching branch name then it builds them. The Jenkinsfile is used for "multibranchPipelineJob", then other jenkins jobs for develop and release use "pipelineJ

Re: How to know when plugins were installed

2022-04-15 Thread John Patrick
>From the plugin ui, everything you can disable is usually a plugin you've installed yourself. A few plugins I've installed can't be disabled, usually where I installed a subsequent plugin that uses that previous plugin. The newer plugin ui is much easier to visualise that information. So Jenkins

Re: Jenkins - Mutlibranch pipeline

2022-04-14 Thread John Patrick
So I've changed mine to 7 days, which I've done using the groovy script that created/configures the pipeline. e.g. multibranchPipelineJob(...) { .. orphanedItemStrategy { discardOldItems { daysToKeep(7) // how long before dead branch build is deleted } } .. } I think the defa

Re: Why jenkins doesn't assign jobs to an agent with more resources

2022-03-30 Thread John Patrick
Hi, Some basic questions; - what Jenkins version? - has it ever work for you? - you mention 8-9 dockers per agent, is that being controlled using "Number of executors" being set for each agent? John On Sun, 27 Mar 2022 at 09:30, chencho m-a wrote: > Hi all, > > I have a cluster with 20 agents

Re: Log4j CVE-2021-44228

2021-12-16 Thread John Patrick
I would exclude /opt/jenkins/.m2/repository from any scans, as already mentioned that is the local maven cache. Also if you don't maintain that, it will grow and grow. Personally I update build jobs so they each have their own maven cache using -Dmaven.repo.local=mvn-repo then delete that after you

Re: mvn not found on $JENKINS_HOME/workspace/@tmp

2021-03-24 Thread John Patrick
Personally I would switch to using maven wrapper as it have saved me from a lot of issues like this. But to your errors; >From your first error, check if mvn is on the path, so I would expect to see "/opt/maven/bin" within the PATH assuming "/opt/maven" is where maven is installed. Doesn't matter

Re: Best Practice- to deploy into windows machine from jenkins hosted on linux.

2021-02-18 Thread John Patrick
What about using Ansible WinRM? for more info https://docs.ansible.com/ansible/latest/user_guide/windows.html Then Jenkins running on Linux just needs ansible installed. John On Thu, 18 Feb 2021 at 14:40, jyothibasu kalyanapu wrote: > > Hi, > > if the case is jenkins hosted on linux machine & h

Re: How to Hide findbug graphs

2021-02-09 Thread John Patrick
have you tried aggregatingResults something like; recordIssues enabledForFailure: true, aggregatingResults: true, tool: spotBugs() John On Tue, 9 Feb 2021 at 17:48, Ashok reddy wrote: > > multiple empty findbug trend graphs are creating How to hide them from > summery? > > > On Tuesday, Februa

Re: Checkout failure on Windows

2021-02-02 Thread Patrick Moran
Feb 1, 2021 at 7:38 PM Patrick Moran wrote: > >> I am using a declarative pipeline. It's not in a Jenkinsfile, however. >> >> Thanks, >> Pat >> >> The last pipeline definition I used is below: >> >> pipeline { >> agent an

Re: Checkout failure on Windows

2021-02-01 Thread Patrick Moran
stage('Deploy') { steps { echo 'Deploying' bat 'dir' } } } } On Monday, February 1, 2021 at 7:01:59 PM UTC-6 Mark Waite wrote: > On Mon, Feb 1, 2021 at 1:54 PM Patrick Moran wrote: > >> Mark, >> >> I tried to reproduce you

Re: Checkout failure on Windows

2021-02-01 Thread Patrick Moran
that batch file. It seems like the checkout has not actually cloned the repo to my jenkins workspace while running the pipeline, but that the files are there when the pipeline has finished. Is this correct? Thanks, Pat On Friday, January 29, 2021 at 8:47:53 PM UTC-6 Patrick Moran wrote: > Than

Re: Checkout failure on Windows

2021-01-29 Thread Patrick Moran
t; bat 'type ngrok.yml' > } > } > > stage('Test') { > steps { > echo 'Testing' > bat 'type docker_scrub.sh' > } > } > > stage('Deploy') { > steps {

Re: Checkout failure on Windows

2021-01-29 Thread Patrick Moran
} } ... On Friday, January 29, 2021 at 2:33:24 PM UTC-6 Mark Waite wrote: > May want to try "origin/feature/test-PM" instead > > On Fri, Jan 29, 2021 at 1:25 PM Patrick Moran wrote: > >> Hello, >> >> >> >> I have installed Jenkins on my Windo

Checkout failure on Windows

2021-01-29 Thread Patrick Moran
Hello, I have installed Jenkins on my Windows 10 machine, created a pipeline and run it. When it runs I get a message "ERROR: Unable to retrieve commit message" when I try to checkout the last commit. The commit number is correct and I can run the steps listed in the console output by hand with

Re: How to access jenkins using ip address remotely ?

2020-10-20 Thread John Patrick
work, then you might need to change your router... you might need to setup dynamic ip routing or port forwarding so it is expired to your isp wan ip address. John On Tue, 20 Oct 2020 at 18:34, John Patrick wrote: > > From the command line do; > $ netstat -an | grep 8080 > > That will

Re: How to access jenkins using ip address remotely ?

2020-10-20 Thread John Patrick
>From the command line do; $ netstat -an | grep 8080 That will show you what ip address as listening on the port 8080, e.g. your jenkins instance. If it's only listening to local addresses then it will never work remotely. Don't have access to a jenkins at the moment, but within Jenkins configura

Re: Git Additional Behaviors potential bug

2020-08-25 Thread John Patrick
org/browse/JENKINS-46052 for a work around using a > shell command to define the user name and email address for the git committer. > > On Tue, Aug 25, 2020 at 4:22 PM John Patrick wrote: >> >> So adding sh 'printenv' I don't see any GIT_ environment variables and

Re: Git Additional Behaviors potential bug

2020-08-25 Thread John Patrick
So adding sh 'printenv' I don't see any GIT_ environment variables and in the config.xml I've got it set as; aName aem...@example.tld Anything else I should check, or anything else I need to configure to get this working? John On Tue, 25 Aug 2020 at 10:43, John Patric

Re: Git Additional Behaviors potential bug

2020-08-25 Thread John Patrick
On Tue, 25 Aug 2020 at 00:56, Mark Waite wrote: > > > > On Mon, Aug 24, 2020 at 5:29 PM John Patrick wrote: >> >> Might be a question for developers or a bug ticket. >> >> I've got a multibranchPipelineJob project which runs a Jenkinsfile. The job &g

Git Additional Behaviors potential bug

2020-08-24 Thread John Patrick
Might be a question for developers or a bug ticket. I've got a multibranchPipelineJob project which runs a Jenkinsfile. The job executes as expected apart form one part. If I select "Configure remote name" and change it to "origin1". When I do "sh 'git remote -v'". I see as expected; [Pipeline

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

Windows Installation and AIX slave.

2019-02-19 Thread Patrick Hamm
Hello Forum; I am new in Jenkins world and I have a project in the collegue, can be possible to install Jenkins in a windows server and then, Can I have access to AIX ? I am thinking like a kind of AIX slave, Regards. -- You received this message because you are subscribed to the Google Group

Re: CloudBees Demo Day

2017-06-08 Thread Patrick Wolf
I forgot to add a time: 8:00 AM PDT/ 4 PM UTC On Thu, Jun 8, 2017 at 6:21 AM, Patrick Wolf wrote: > Join us today for our monthly Demo Day to show off the latest features we > have been working on in Jenkins. This month we will show changes in > Pipeline, Remoting, and LDAP.

CloudBees Demo Day

2017-06-08 Thread Patrick Wolf
Join us today for our monthly Demo Day to show off the latest features we have been working on in Jenkins. This month we will show changes in Pipeline, Remoting, and LDAP. https://www.youtube.com/watch?v=XRIiY0ZFn2c -- You received this message because you are subscribed to the Google Groups "J

OSS Demo Day

2017-05-10 Thread Patrick Wolf
CloudBees will be hosting the May installment of our ongoing series of demonstrations of new and upcoming features in Jenkins tomorrow at 8 AM PDT (3 PM UTC). https://www.youtube.com/watch?v=HhiUY70RVJY Please join Jesse Glick, Stephen Connolly, and Sam Van Oort to see the latest changes. We wil

Re: Declarative pipelines per branch and reusable stages (keeping it DRY)

2017-04-12 Thread Patrick Wolf
Feel free to open a JIRA ticket but I'm not a huge fan of this because it is counter to the KISS principle we wanted with Declarative and breaks the Blue Ocean editor. We have discussed having multiple "stages" blocks but rejected that because it quickly becomes needlessly complex without addin

CloudBees OSS Demo Day

2017-04-10 Thread Patrick Wolf
It's time for CloudBees Monthly Demonstrations of new features we are working on in Jenkins. When: Thursday, April 13, 8 AM PDT (3 PM UTC) This will be a live feed on CloudBeesTV YouTube channel: https://www.youtube.com/watch?v=rfscxse74fw The recording will be available after for viewing on th

CloudBees OSS Demo Day

2017-03-15 Thread Patrick Wolf
e.com/watch?v=ylWkEfxF-IY We will cover: - Latest changes for SCM API - Bug Fixes and Tweaks - GitHub API Rate Limiting - Updates for Pipeline - New Library Step for Pipeline - Declarative Pipeline 1.1.1 Release Regards Patrick -- You received this message because you are subscribed t

Re: Is it possible to have pipeline-stage-view-plugin display skipped stages differently than the executed stages?

2017-02-14 Thread Patrick Wolf
2c34d8fd-8a70-4a44-9b10-d8f4f82fdfb5%40googlegroups.com?utm_medium=email&utm_source=footer> > . > For more options, visit https://groups.google.com/d/optout. > -- Patrick Wolf Product Director - Jenkins CloudBees -- You received this message because you are subscribed to the Google

Re: Nexus plugins can't connect to my fresh Nexus install

2017-02-08 Thread Patrick Tchankue
600/Screen%2BShot%2B2016-09-13%2Bat%2B9.21.09%2BAM.png> Regards, Patrick On Friday, January 20, 2017 at 3:36:43 AM UTC+2, lakshminarayana kodali wrote: > > I'm also running into the same issue. Anyone of you were able to resolve > it??? I'm using the Nexus 3.x ser

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: Demo Days

2016-12-07 Thread Patrick Wolf
The video link should show up on Youtube when it is ready to start. Apologies for not including this information in my first email. On Mon, Dec 5, 2016 at 8:47 PM, Patrick Wolf wrote: > As you may know, CloudBees has a team of Engineers dedicated to working on > issues and new features in J

Demo Days

2016-12-05 Thread Patrick Wolf
to me. Thanks, Patrick -- Patrick Wolf Product Director - Jenkins CloudBees -- 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 jenkinsc

Fwd: Demos

2016-10-24 Thread Patrick Wolf
t the video link won't expire and can be replayed at any time. https://www.youtube.com/watch?v=U5V1tDIu8Hs This session will focus mostly on changes to Pipeline. Thanks! Patrick -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group.

Re: Pipeline stage deprecated without block

2016-09-01 Thread Patrick Wolf
enkinsci-users/CAO49JtGzmn%2Bq8xWrJdYAbR6wYyqX5gNmyCa%2 >> BZxLDDBScYouS%3Dw%40mail.gmail.com >> <https://groups.google.com/d/msgid/jenkinsci-users/CAO49JtGzmn%2Bq8xWrJdYAbR6wYyqX5gNmyCa%2BZxLDDBScYouS%3Dw%40mail.gmail.com?utm_medium=email&utm_source=footer> >> . >>

Re: Not able to trigger Github Organization folder job automatically

2016-08-17 Thread Patrick Wolf
Can you confirm if this is the same behavior you are seeing? https://issues.jenkins-ci.org/browse/JENKINS-34563 If so, add your comments here so we can track all of it. On Wed, Aug 17, 2016 at 11:21 AM, Harsha Adiga wrote: > Hi Patrick, > > Any updates on this query? Do you need

Re: Not able to trigger Github Organization folder job automatically

2016-08-15 Thread Patrick Wolf
eated by a fork. That is why the first Push Event is so important. On Mon, Aug 15, 2016 at 1:03 PM, Harsha Adiga wrote: > Hi Patrick, > > Thanks for the quick reply. Yes I am creating an empty repository without > Jenkinsfile at first and then adding the Jenkins file as a ne

Re: Not able to trigger Github Organization folder job automatically

2016-08-15 Thread Patrick Wolf
> To view this discussion on the web visit https://groups.google.com/d/ > msgid/jenkinsci-users/2edb9a66-be61-4bea-85fb-77e3ab3eeb7b%40googlegroups. > com > <https://groups.google.com/d/msgid/jenkinsci-users/2edb9a66-be61-4bea-85fb-77e3ab3eeb7b%40googlegroups.com?utm_medium=email&ut

Re: Github Plugin is painful to use

2016-07-05 Thread Patrick Wolf
>> work great). >>> >> -- >> 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..

Re: Multiple pipelines in Jenkinsfile

2016-06-28 Thread Patrick Wolf
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/b4f6e051-1cf7-4455-be12-9c7a52366b9e%40googlegroups.com > <https://groups.google.com/d/msgid/jenk

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: What I miss with Pipeline: Console output from each node

2016-06-01 Thread Patrick Wolf
A%40mail.gmail.com > <https://groups.google.com/d/msgid/jenkinsci-users/CAG%3DrPVdz_ESpCUWGUEAWrawa26oHw-oyRvice%2BTe-_v662503A%40mail.gmail.com?utm_medium=email&utm_source=footer> > . > > For more options, visit https://groups.google.com/d/optout. > -- Patrick Wolf Sr. Produc

Re: How do I set up the GitHub Organization Folder Plugin?

2016-06-01 Thread Patrick Wolf
t > https://groups.google.com/d/msgid/jenkinsci-users/480bc88a-717d-4679-bbf3-84c780bc1590%40googlegroups.com > <https://groups.google.com/d/msgid/jenkinsci-users/480bc88a-717d-4679-bbf3-84c780bc1590%40googlegroups.com?utm_medium=email&utm_source=footer> > . > For more option

Re: Proxy for branch indexing in multibranch pipeline

2016-05-02 Thread Patrick Wolf
... 8 more*Caused by: java.net.ConnectException >>> <http://stacktrace.jenkins-ci.org/search?query=java.net.ConnectException>: >>> Connection timed out github.com <http://github.com> >>> * at org.eclipse.jgit.util.HttpSupport.response(HttpSupport.java:17

Re: Pipelines, iterating maps and more headaches

2016-04-27 Thread Patrick Wolf
but in the meantime, do not use any method built >>>>> into Groovy which takes a closure argument, such as `list.each {x -> …}` >>>>> or >>>>> `someText.eachLine {line -> …}`. Rather use a Java-style loop. (To be on >>>>> the safe s

Re: why is the groovy code failing in jenkins?

2016-04-21 Thread Patrick Wolf
e 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.co

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. &

Re: Jenkinsfile/pipeline with credentials

2016-04-18 Thread Patrick Wolf
eb visit > https://groups.google.com/d/msgid/jenkinsci-users/B78AD238-941B-4274-9F2A-65D4DD15C2F3%40beckweb.net > . > For more options, visit https://groups.google.com/d/optout. > -- Patrick Wolf Sr. Product Manager CloudBees -- You received this message because you are subscribed to the Goo

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: Jenkins 2.x: Multibranch Pipeline - Dynamic Jenkinsfile

2016-04-13 Thread Patrick Wolf
it doesn't have to contain your Pipeline script. It can simply tell Jenkins where to find the Pipeline script that you want to run. This is a really brief answer but hopefully can get you on the right track. Regards, Patrick On Wed, Apr 13, 2016 at 5:43 AM, wrote: > Hello, > > I ha

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 on Windows Server w/ short-workspace-path-plugin (path too long error)

2016-02-01 Thread Patrick Hummer
Thanks for the info everyone. I was able to temporarily fix by setting custom workspace path like suggested. I will look into the additional resources to see how we can solve this on a more system level. Thanks! On Friday, January 29, 2016 at 11:06:12 AM UTC-5, Patrick Hummer wrote: > &

Jenkins on Windows Server w/ short-workspace-path-plugin (path too long error)

2016-01-29 Thread Patrick Hummer
reenshot_012916_110220_AM.jpg> <https://lh3.googleusercontent.com/-lbG8WTJcUEo/VquM2HCMmFI/MfY/rze4X80ptw4/s1600/Screenshot_012916_110220_AM.jpg> Any direction would be greatly appreciated. Thank you, Patrick -- You received this message because you are subscribed to the Go

Re: [workflow plugin] use case question

2016-01-21 Thread Patrick Bruneton
ay a écrit : > > Can you just set the *Restrict where this project can be run* checkbox in > conjunction with the *Label Expression* param on the two subjobs? > > On Thursday, January 21, 2016 at 2:16:39 AM UTC-8, Patrick Bruneton wrote: >> >> Hi all, >> >> I

[workflow plugin] use case question

2016-01-21 Thread Patrick Bruneton
stage details } However, I am not sure I can do this, because my jobs exist already, and use plugins that do not seem to be supported by workflow (e.g. xUnit, Extended Email) Any thought? Thanks, Patrick -- You received this message because you are subscribed to the Google Groups "Je

[workflow plugin] stage concurrency

2016-01-21 Thread Patrick Bruneton
trigger the jobs manually multiple times). However, if I trigger my workflow multiple times, executions of the job 'build' are serialized where I expect to have two runs in parallel. Did I miss something? Or is it a know issue? Thanks for your help, Patrick -- You received this messa

[Swarm Plugin] Set `Environment variables` in `Node Properties`

2015-09-03 Thread Patrick Jonathan Cadeliña
I would like to set environment variables in node properties (Jenkins > Nodes > Configure) and I'm doing this via puppet . This puppet module's `jenkins::slave.pp` configures the swarm plugin

Re: How to take care of a large Jenkins installation and still keep your sanity

2015-08-28 Thread Patrick Hund
odio > > On Thursday, August 20, 2015 at 7:10:13 AM UTC-3, Patrick Hund wrote: >> >> Hi all, >> >> there's a new series of blog articles on the eBay developer blog which I >> hope you find useful and entertaining: >> >> >> http://www.tech

How to take care of a large Jenkins installation and still keep your sanity

2015-08-20 Thread Patrick Hund
aining our Jenkins CI systems. We are mobile.de, Germany's biggest online marketplace and other vehicles. Cheers, Patrick -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this group and stop receiving emails f

[workflow-plugin] JAVA_HOME is not defined correctly

2015-03-16 Thread Patrick Bateman
Using a script from the plugin demo tailored for my environment, but get a JAVA_HOME error... Running: Install a tool Running: Dev Entering stage Dev Proceeding Running: Shell Script [WPG-TOOLS-WORKFLOW] Running shell script + mvn -o clean package which: no javac in (/opt/jenkins/slave/tools/Ma

RE: Simultaneous parent builds on same node

2014-12-17 Thread Patrick Eklund
Hi. I ran into simmular problems and i used https://wiki.jenkins-ci.org/display/JENKINS/Least+Load+PluginIt should help ut. BR Pe Date: Wed, 17 Dec 2014 09:47:28 -0600 Subject: Simultaneous parent builds on same node From: milwrd...@gmail.com To: jenkinsci-users@googlegroups.com We have a build

Re: Best way to re-configure Jobs on-the-fly

2014-12-02 Thread Patrick van Dissel
ach story we create the whole pipeline of that application. Other services take care of setting up the story-based infrastructure. For us, the JobDSL is a perfect fit. It provides the flexibility to the teams to configure their own application pipelines which go beyond the basic CI setups that Trav

Re: How to structure Jenkins with a build that has 100's of projects?

2014-11-26 Thread Patrick van Dissel
Hi, As promised, I just published the video of my conference talk about: "Cultivating the Jenkins job jungle with Groovy" You can find the video and all info at: - http://youtu.be/8jQm2wqX4xc I hope you find it interesting :) Regards, Patrick On 10/29/2014 01:39 PM, Patrick

Re: How to structure Jenkins with a build that has 100's of projects?

2014-10-29 Thread Patrick van Dissel
ode, showing an extensive CI and CD setup with the JobDSL. And also showing steps how to start with the JobDSL. I will record the session and share the slides, video and demo code afterwards. I'll add the links here as soon as I have them shared :) /Patrick On 10/29/2014 12:47 PM, Maciej Jaros

Re: How to structure Jenkins with a build that has 100's of projects?

2014-10-28 Thread Patrick van Dissel
nkins setup of 1 master with 3 slaves running a bit more then 1000 jobs. With multiple jobs for single apps/libraries/.., eg. CI, Deploy, DEV, TEST, ACC, PRO, etc. Almost all managed with JobDSL scripts. /Patrick On 10/29/2014 12:35 AM, Matt Klein wrote: > Thanks for the tips. I did a search

Re: Build Fails with Failed to install JDK. Exit code=1,603

2014-06-11 Thread Patrick Auld
I'm also seeing this problem. It appears that the auto installers for the JDK we had were "mixed up", non of the Java versions had the correct installers after updating Jenkins to 1.5.67. Deleting the JDK's directory from the hudson.model.JDK directory to force a reinstall didn't work. Non did

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

How to get URL of pipeline job in jenkins

2014-05-22 Thread Sean Patrick Floyd
Hi, I posted a question on StackOverflow yesterday that nobody seems to be able to answer. http://stackoverflow.com/q/23782635/342852 Basically, I use the Build Pipeline Plugin to create a delivery pipeline, but the actual deployment happens asynchronously in a custom deploy tool. However, I n

Re: projects are missing in cc.xml

2014-03-26 Thread Curt Patrick
Never mind. I found where the bug is reported: https://issues.jenkins-ci.org/browse/JENKINS-19639 On Wednesday, March 26, 2014 1:44:29 PM UTC-7, Curt Patrick wrote: > > How does Jenkins decide what jobs to display in cc.xml? > > Some of our jobs (for example, > http://builds.

projects are missing in cc.xml

2014-03-26 Thread Curt Patrick
How does Jenkins decide what jobs to display in cc.xml? Some of our jobs (for example, http://builds.netflix.com/job/WE-CLOUD-MERCH-accountTests) are listed in http://builds.netflix.com/cc.xml and some (for example, http://builds.netflix.com/job/Merchweb-DEV-GenerateIvyLocks) are not listed.

Re: Publish over SSH plugin not transferring any files

2014-03-04 Thread Patrick White
That did it! After adjusting that and some permissions changes it worked like a charm. Thanks so much for the help!! Patrick On Tuesday, March 4, 2014 4:44:12 PM UTC-5, Richard Bywater wrote: > > Quick thought - trying changing transfer set to "**/*" (i.e. drop > directory o

Publish over SSH plugin not transferring any files

2014-03-04 Thread Patrick White
I want to transfer files from my post build Jenkins workspace to a location on a remote server. Build goes smoothly for all steps in the job but always transfers 0 files. This is the console output: Started by user Patrick Building in workspace /var/lib/jenkins/jobs/20eyes Build

Problems with external SMTP

2013-10-09 Thread Patrick Zies
Hello I have the following problem when i try to use an external SMTP server with jenkins. Client does not have permissions to send as this sender I asked the provider for all informations i need, like name of SMTP server, or what user to use etc. Is this a problem with my provider or a probl

Re: Jenkins does not discover new versions

2013-05-03 Thread Patrick van der Velde
hing on my local Jenkins installation). > > If you intend to stay on 1.509, you could consider assisting with the LTS > testing and install the 1.509.1 release candidate. I think it is 1.509 > with some additional bug fixes backported. > > Mark Waite > > ---

Jenkins does not discover new versions

2013-05-02 Thread Patrick
Hi All My local Jenkins installation does not seem to be able to detect new updates anymore. I upgraded to 1.509 about 2 - 3 weeks ago but now Jenkins doesn't seem to detect any of the newer versions. Updates to plugins are found, although I'm not sure if it detects all updates. My questions ar

Re: Git publisher fails to push

2013-03-14 Thread Patrick van der Velde
though 1.3.0 shows the bug you've > discovered. > > Thanks, > Mark Waite > > -- > *From:* Patrick > *To:* jenkinsci-users@googlegroups.com > *Sent:* Thursday, March 14, 2013 12:56 AM > *Subject:* Git publisher fails to push > > Hi All > > I've been trying

Git publisher fails to push

2013-03-13 Thread Patrick
Hi All I've been trying to use the GIT publisher to push the changes from my integration branch back to my origin/master branch (sort of like here: http://twasink.net/2011/09/20/git-feature-branches-and-jenkins-or-how-i-learned-to-stop-worrying-about-broken-builds/). I've managed to get the GI

Re: Check GIT commit messages.

2013-02-27 Thread Patrick Finkbeiner
First, thanks for your reply! Great idea!! Not exactly what i searched for but a good solution for selective builds! Thank you! On Feb 27, 2013, at 9:04 AM, Jonas Geiregat wrote: > On Tue, Feb 26, 2013 at 05:40:58AM -0800, Patrick wrote: >> Hey Guys i am very new to this whole jenk

Re: Check GIT commit messages.

2013-02-26 Thread Patrick
on. > > Mark Waite > > > ------ > *From:* Patrick > > *To:* jenkins...@googlegroups.com > *Sent:* Tuesday, February 26, 2013 6:40 AM > *Subject:* Check GIT commit messages. > > Hey Guys i am very new to this whole jenkins thing. > Curre

Check GIT commit messages.

2013-02-26 Thread Patrick
Hey Guys i am very new to this whole jenkins thing. Currently i've added a jshint check to every new commit and it works pretty well so i want to let check jenkins much more… Im trying so check for the commit messages itself. Is it possible to check if the commit message begins with a specific

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

2013-01-02 Thread Patrick van der Velde
ript1$_run_closure1_closure3) values: Removing the guard clause made it work. So I'm guessing guard can only handle 1 item? Thanks Petrik On Wed, Jan 2, 2013 at 10:16 PM, nicolas de loof wrote: > use gard+rescue so you can execute a post-job even when some jobs are > unstable > >

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

2013-01-01 Thread Patrick
ich is not what I want. I want the results gathering to always take place, even if the all the build jobs fail. Any way to achieve this? Thanks Petrik On Wednesday, 2 January 2013 11:46:54 UTC+13, Patrick wrote: > > Hi > > Mmm ok, I guess I could create a separate job to gather a

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

2013-01-01 Thread Patrick van der Velde
in the DSL > > 2013/1/1 Patrick > >> Hi All >> >> I've started using the Build Flow plugin to simplify my build pipeline. >> I've gotten it to work just fine (all the jobs get triggered at the right >> stage) but I can't seem to copy the generat

Build flow plugin: How to copy results from downstream jobs

2012-12-31 Thread Patrick
Hi All I've started using the Build Flow plugin to simplify my build pipeline. I've gotten it to work just fine (all the jobs get triggered at the right stage) but I can't seem to copy the generated build results from the downstream jobs. For instance my build produces a CCM log (an XML file) a

Re: Jenkins 1.485 bug - not displaying statuses and history

2012-11-27 Thread Patrick Connolly
This surfaced when I upgraded from an old Jenkins version (?) to 1.491. It manifested as not only build history disappearing for jobs, but also issues with the build pipeline plugin "losing" random build pipelines. I first thought that early jobs weren't kicking off later jobs, but it might simp

How to crash Jenkins in the 'Poll SCM' box

2012-11-14 Thread Patrick Byrne
I note that entering "/15 * * * *" in the 'Poll SCM' job config field causes a crash: Exception: java.lang.RuntimeException: Failed to instantiate class hudson.triggers.SCMTrigger from {"scmpoll_spec":"/15 * * * *"} Stacktrace: javax.servlet.ServletException: java.lang.RuntimeException: Failed

RE: disable email notifications

2012-11-08 Thread Patrick Byrne
l and spam many users with bogus error messages. From: Patrick Byrne [mailto:p.by...@samsung.com] Sent: 08 November 2012 14:44 To: 'jenkinsci-users@googlegroups.com' Subject: disable email notifications Hello, How can I suppress sending of email notifications in Jenkins, pl

  1   2   >