Generating release notes from jira thru jenkins

2017-03-20 Thread pradeep kumar
Hi All, I need a help on generating release notes from jira thru jenkins . Can anyone suggest the best way to do this . Thanks in advance . Regards, Pradeep -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this group

Re: Jenkins 2.49: Can't install JDK from tar.gz?

2017-03-20 Thread Daniel Beck
> On 20.03.2017, at 21:25, Jeff wrote: > > Any thoughts as to why this isn't working or what I should look at? I can't > find anything in the logs. The "label" you can configure for an installer is not some arbitrary, well, label, but tied to the node labels in Jenkins to allow you to speci

Re: Access build duration inside declarative pipeline

2017-03-20 Thread Andrew Bayer
And a PR up at https://github.com/jenkinsci/workflow-support-plugin/pull/33 On Mon, Mar 20, 2017 at 6:11 PM, Andrew Bayer wrote: > This is more of a general Pipeline matter than just Declarative, fwiw. > I've opened https://issues.jenkins-ci.org/browse/JENKINS-42952 for this > and will get a PR

Re: Access build duration inside declarative pipeline

2017-03-20 Thread Andrew Bayer
This is more of a general Pipeline matter than just Declarative, fwiw. I've opened https://issues.jenkins-ci.org/browse/JENKINS-42952 for this and will get a PR up shortly. A. On Mar 20, 2017 15:41, "Nick Le Mouton" wrote: Hi, My current jobs use the Slack plugin which notifies a channel when

Access build duration inside declarative pipeline

2017-03-20 Thread Nick Le Mouton
Hi, My current jobs use the Slack plugin which notifies a channel when a build completes, e.g. job name - #2423 Success after 1 min 49 sec. I'm trying to replicate the same message in declarative pipelines, but I can't seem to find a way to get the build duration. I have tried using currentBui

Re: How to properly use parallels in pipelines

2017-03-20 Thread Nick Le Mouton
I've been playing around with this as well, there doesn't seem to be a lot of documentation around using parallel in declarative pipelines, but this seems to work for us: stage('Code analysis') { steps { parallel ( lint: { //run lint },

Declarative pipeline: access JenkinsLocationConfiguration.getAdminAddress()?

2017-03-20 Thread Jon Dufresne
Hi, I have several multibranch pipeline jobs that all use a declarative pipeline. The Jenkinsfiles contain the following snippet: post { failure { step([$class: 'Mailer', recipients: 'c...@example.com', sendToIndividuals: true]) } } I would like to avoid hard coding the address "

jenkins java.io.IOException: can not read HTTP status line

2017-03-20 Thread trebla ng
Hi, I am getting the error message when trying to checkout via jenkins. Unfortunately, don't seem to find similar issue anywhere else. Below is the complete trace. Any pointer would be greatly appreciated. In tcpdump trace, I do see authentication exchange and PROPFIND exchanges. Thanks Check

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

2017-03-20 Thread nav
Hi, Having same issue, but I am using nexus 3 as well. Anyone got this working ? If so please share :-) On Wednesday, March 15, 2017 at 4:08:07 AM UTC-7, Dominic Murphy wrote: > > I'm receiving the same error here as Arnaud and Patrick's fix didn't work > for me. Also using Nexus 3. Anyone m

Jenkins 2.49: Can't install JDK from tar.gz?

2017-03-20 Thread Jeff
My Jenkins instance was recently upgraded from 1.x to 2.48 behind a firewall with limited connectivity. While I recently got permissions configured to connect via a proxy to the Jenkins Update servers, I am unable to automatically install the JDK from Oracle. So I manually uploaded the jdk-8u121-

manually created config.xml and plugin version numbers

2017-03-20 Thread Adam Levine
I've templated out some jobs, using gradle file copy/token replacement and the cli create-job with my config.xml, and all is working fine. My question is on pieces that are plugins. ie 1 I already have a process in place to extract all the current plugins and versions and

Re: Createing job through CLI

2017-03-20 Thread Adam Levine
oops, didn't realize I posted on a 3yr old thread. On Wednesday, July 2, 2014 at 1:48:35 PM UTC-5, Mike Craig wrote: > > Hello, > > I am using the Jenkins CLI to pull down a list of 'template' jobs, search > and replace for our release version, then "create" a job using the job XML > which I hav

Re: Createing job through CLI

2017-03-20 Thread Adam Levine
Promoted build has a special subfolder, promotions, in the same dir as the config.xml. In the promotions directory, there is a directory for each promotion name/stage, each with a config.xml. It's quite possible those subfolders are not being copied over because they're a one-off. On Wedne

using nonCPS and xml builder

2017-03-20 Thread niristotle okram
Hi, i have forged the below pipeline workflow. The intent is to generate the XML file as a part of the pipeline and it will be used in the subsequent stages of the pipeline. I can invoke the pipeline successfully, but i dont find the XML generated in the workspace. I would expect the "file.XML" gen

Re: logstash-plugin configure index

2017-03-20 Thread Josh Miller
Ok, I typically send through logstash, so yes, you would want to set your indexer type to ‘elasticsearch’ and then fill in your host and port appropriately. Looking at the help under the key, it looks like you want to set the index and type there: re: ELASTICSEARCH: The name and type path. Ex

Re: logstash-plugin configure index

2017-03-20 Thread iob
@Josh thanks a lot from your help so far. I assume that you mean Jenkins -> Manage Jenkins -> Global Tool Configuration -> Logstash Plugin. Which in this case yes i mean the key. Also I noticed that you suggest indexer type to ‘syslog’ but i have to elasticsearch as I want to push directly to

SVN Plugin - case sensitivity on tags, branches and trunk

2017-03-20 Thread Kenneth Guardanapo
Our projects have been built with the folders under the project named Tags, Trunk and Branches. When I create a parameterized project and try to build using it, it only shows those names in the dropdown. I am unable to see anything under the folders. If I rename them to tags, trunk and branch

Re: questions on SCM and pipe

2017-03-20 Thread Stefano Tranquillini
thanks. any pinpoint that i can use? btw right now i'm testing a default build (no pipeline) to have coverage and other plugins. Il giorno lun 20 mar 2017 alle 14:06 Stephen Connolly < stephen.alan.conno...@gmail.com> ha scritto: > Pipeline multibranch is what you want. > > Each branch can hav

Re: Issues with Jenkins

2017-03-20 Thread Slide
You are using a VERY old version, I would recommend upgrading to the latest LTS release (after backing up your configuration). On Mon, Mar 20, 2017, 06:05 rkilaru1912 wrote: > Hi Everyone, > > > > I am facing below issues with Jenkins now a days. I am using Jenkins ver. > 1.498. > > > > 1. Somet

Why do I have to refresh Artifactory connection/repositories after Jenkins is restarted

2017-03-20 Thread JJ
Whenever we reboot the Jenkins master or restart the services on the Jenkins master, our connections to Artifactory fail. To fix this we either have to go into the Jenkins System Configuration and test the Artifactory connection then save, or go into any job using Artifactory and refresh the c

Re: questions on SCM and pipe

2017-03-20 Thread Stephen Connolly
Pipeline multibranch is what you want. Each branch can have its own Jenkinsfile and that will describe the behaviour for that branch... Or you can use a common Jenkinsfile and use conditions for some steps based on the branch name HTH On 20 March 2017 at 10:33, Stefano Tranquillini < stefano.tr

Issues with Jenkins

2017-03-20 Thread rkilaru1912
Hi Everyone, I am facing below issues with Jenkins now a days. I am using Jenkins ver. 1.498. 1. Sometimes getting latest from TFS is not working properly. 2. Sometimes job status is success even though there are build errors. 3. Job history disappears. Restart the server retur

Re: Jenkins upgrade from 1.651 to latest LTS 2.32.X

2017-03-20 Thread Daniel Beck
> On 20.03.2017, at 12:54, mtnj...@gmail.com wrote: > > can you please guide us through the steps or important prerequites before > doing it. > Have you read https://jenkins.io/doc/upgrade-guide/ ? -- You received this message because you are subscribed to the Google Groups "Jenkins Users"

Jenkins upgrade from 1.651 to latest LTS 2.32.X

2017-03-20 Thread mtnjira
Hi All, We are planning to upgrade jenkins from 1.651 to latest LTS version(2.32.X). can you please guide us through the steps or important prerequites before doing it. and do we need any intermediate version or we can directly go to latest 2.32 version from 1.651 version. As this jenkins we

questions on SCM and pipe

2017-03-20 Thread Stefano Tranquillini
Hi all, I'm new to jenkins and I've rather a complex setup. I did it via pipe and diffrent stages, but there are things not yet clear to me. Overall my setup is this - push the code to git - jenkins automatically pull the code (there's a webhook for that) - copy env files (i'm usin python and dj

Define sonarqube/sonar-scanner folder specific

2017-03-20 Thread 'Dan Steffen' via Jenkins Users
Hello, we use in our company a combination from folders and job restriction to separete different projects team by eachother on the same Jenkins Master Server. But now a Team would like to use sonarqube and I would like to ask can I restrict the access of the Sonarqube Installation for a Team (