Re: JNLP agent startup not working after upgrade from 2.4x to 2.89.4

2018-03-05 Thread Dan zaWhite
I sanitized the machine completely. I was expecting that the java webapp will launch with no problems. Will test also today with a fresh windows machine and see if i can reproduce the issue. For now i just updated manually the ws installer and config file and reinstalled the jenkins service

"Bitbucket Team/Project"

2018-03-05 Thread Christian Gagneraud
I'm trying the "Bitbucket Team/Project" (which uses the "multibranch Pipeline"). Using "jenkinsci/blueocean:latest" docker image. When i create a new ""Bitbucket Team/Project"" item, the BB project is scanned, project is added and repo too. Repo that have a "/Jenkinsfile" are picked up and built,

Re: Jenkins and Ranorex

2018-03-05 Thread Douglas Antônio
So, did you fix this problem ?? Em quarta-feira, 12 de julho de 2017 10:55:51 UTC-3, Matthew Anderson escreveu: > > I work as a test engineer and I am trying to connect my automation test > that I generated in the Ranorex software to Jenkins so that I can have > scheduled tests. However, I'm

Slack Webhook Settings

2018-03-05 Thread 'Guilherme Augusto de Sousa Rios' via Jenkins Users
Hi, I am trying to setup a Slack Webhook, but keep getting the error at the end of the email. Jenkins version 2.82, Slack plugin version 2.3. Both "Outgoing Webhook Token" and "Outgoing Webhook URL Endpoint" are set, looks like I'm getting the NullPointerException when trying to access

Re: Logs inside BlueOcean do not get updated automatically

2018-03-05 Thread R. Tyler Croy
(replies inline) On Mon, 05 Mar 2018, Vivek Pandey wrote: > Hi Christian, > > This looks like regression. I have opened > https://issues.jenkins-ci.org/browse/JENKINS-49929, we are going to take a > look at it. Thanks for reporting. Christian, are you using Firefox perhaps? I've noticed that

JNLP agent startup not working after upgrade from 2.4x to 2.89.4

2018-03-05 Thread Ivan Fernandez Calvo
Did you replace the slave.jar? Did you try to uninstall the service and install it again? Also take a look at this page https://github.com/jenkinsci/windows-slave-installer-module/blob/master/README.md -- You received this message because you are subscribed to the Google Groups "Jenkins

Re: Logs inside BlueOcean do not get updated automatically

2018-03-05 Thread Vivek Pandey
Hi Christian, This looks like regression. I have opened https://issues.jenkins-ci.org/browse/JENKINS-49929, we are going to take a look at it. Thanks for reporting. On Mon, Mar 5, 2018 at 6:08 AM Christian Ciach wrote: > Hello, > > I wish I could describe this issue

Re: Connecting static node within 'jenkins-kubernetes-plugin' dynamic environment.

2018-03-05 Thread YAN-HONG WANG
Hello Carlos, Thanks very much for your fast hint. I will try it. Hong Am Montag, 5. März 2018 11:41:52 UTC+1 schrieb Carlos Sanchez: > > yes, you can do that, using the tunnel parameter of the jnlp-slave jar > If you want to run an external agent on docker use >

Re: ALI Integration Problem - Build Configuration XML is empty

2018-03-05 Thread Florian E
I found a solution for the problem, after 3 day's :-) I put the job in a "folder" which I created with the Folder plugin. When I move the job to the "root" folder it appeares in the Build Configuration XML! So don't use folders. Use view's instead to get a better overview of your jobs. BR

Job is not running after click on build ICON

2018-03-05 Thread Poovaraj Thangamariappan
Hi Team, Jenkins job is not running after click on build icon. It is showing below error message in command prompt after build the job. INFO: Session node0pco4cd96heeeygtv6xf9qug3pxw1eee already being invalidated Please help me ! Regards, Poovaraj -- You received this message because you

Logs inside BlueOcean do not get updated automatically

2018-03-05 Thread Christian Ciach
Hello, I wish I could describe this issue better, but I have no idea how to debug this. I am using the current version of Jenkins (2.106) with BlueOcean (1.4.2) on CentOS. Usually, I would expect the logs inside BlueOcean to automatically update themself when my build logs new stuff, but

Re: Kubernetes and docker syntax for jenkins declarative pipeline

2018-03-05 Thread Tristan FAURE
Thank you very much by this quick answer. I will follow the issue. Le lundi 5 mars 2018 13:27:31 UTC+1, Carlos Sanchez a écrit : > > You would probably be interested in > https://issues.jenkins-ci.org/browse/JENKINS-48050 > > On Mon, Mar 5, 2018 at 1:08 PM, Tristan FAURE

Re: Kubernetes and docker syntax for jenkins declarative pipeline

2018-03-05 Thread Carlos Sanchez
You would probably be interested in https://issues.jenkins-ci.org/browse/JENKINS-48050 On Mon, Mar 5, 2018 at 1:08 PM, Tristan FAURE wrote: > Hello all, > > we are currently experiencing docker capabilities in jenkins with > Jenkinsfile and declarative pipelines using

Re: "Connect to repo.maven.apache.org:443 failed: Connection timed out" by running the job

2018-03-05 Thread danielkanyog
Hi! Do you find the solution? On Tuesday, November 3, 2015 at 11:30:21 AM UTC+1, Wei Chen wrote: > > Hi, > > I installed the jenkins-1.634-1.1 under RHEL 5.6. > > I create a job and this is a maven built project. I run the project in > Linux console with 'mvn clean package' and this is

Kubernetes and docker syntax for jenkins declarative pipeline

2018-03-05 Thread Tristan FAURE
Hello all, we are currently experiencing docker capabilities in jenkins with Jenkinsfile and declarative pipelines using this instruction : agent { docker { image 'node:7-alpine' } } I try to follow the initiatives around kubernetes and it seems very interesting but what I can see from

Re: Valgrind plugin maintainer - out of action

2018-03-05 Thread Baptiste Mathus
Hello, Probably more a question for the developers mailing list. Anyone is welcome to step up in case a plugin is "orphaned", would you be ready to take over? Thanks 2018-03-05 11:30 GMT+01:00 : > Hi, > > The valgrind plugin maintainer seems to be out of action. There are a >

RE: Syntax for multiple artefact patterns in a declarative script?

2018-03-05 Thread David Aldrich
Thank you, that fixed it. archiveArtifacts artifacts:'myProj/myExe, solibs/*.so' Best regards David From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Victor Martinez Sent: 05 March 2018 10:53 To: Jenkins Users

Re: Syntax for multiple artefact patterns in a declarative script?

2018-03-05 Thread Victor Martinez
You need to use comma separated based, further details in the /pipeline-syntax/ and https://jenkins.io/doc/pipeline/steps/core/#archiveartifacts-archive-the-artifacts Something like the above snippet should work archiveArtifacts artifacts:'myProj/myExe, ../solibs/myLib'

Re: Connecting static node within 'jenkins-kubernetes-plugin' dynamic environment.

2018-03-05 Thread Carlos Sanchez
yes, you can do that, using the tunnel parameter of the jnlp-slave jar If you want to run an external agent on docker use JENKINS_TUNNEL=your_node_ip:your_node_port for instance https://github.com/jenkinsci/docker-jnlp-slave#running On Mon, Mar 5, 2018 at 11:34 AM, WANG, YAN-HONG

Valgrind plugin maintainer - out of action

2018-03-05 Thread nils
Hi, The valgrind plugin maintainer seems to be out of action. There are a number of pending pull requests including pipeline support that are really valuable. Would it be possible for someone to merge these pull requests? Could a new maintainer be appointed? Cheers, Nils -- You received

Connecting static node within 'jenkins-kubernetes-plugin' dynamic environment.

2018-03-05 Thread WANG, YAN-HONG
Hello, I use jenkins-kubernetes-plugin to run Jenkins in Kubernetes cluster. So far that works perfectly. All the nodes are automatically generated and destroyed in right moment of pipeline. But, is it possible to connect external *static node *within Jenkins of Kubernetes cluster ? By

Syntax for multiple artefact patterns in a declarative script?

2018-03-05 Thread David Aldrich
Hi I want to specify two artefact patterns in a declarative script but am unsure of the syntax: post { always { archiveArtifacts artifacts:'myProj/myExe',artifacts:'../solibs/myLib' } } } Errors encountered validating Jenkinsfile: WorkflowScript: 71:

Re: JNLP agent startup not working after upgrade from 2.4x to 2.89.4

2018-03-05 Thread Victor Martinez
https://jenkins.io/doc/upgrade-guide/ might help you out regarding what changes were published between 2.4X and 2.89.4 -- 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

JNLP agent startup not working after upgrade from 2.4x to 2.89.4

2018-03-05 Thread Dan zaWhite
This is what i did: 1. Upgrade jenkins to latest and greatest 2. Upgrade plugins 3. Sanitize a windows 2012 R2 slave from the old jenkins slave installation 4. Upgrade java jre to java 8 on the slave 4. Trying to connect the same slave again via the slave-agent.jnlp file The slave does not start

ALI Integration Problem - Build Configuration XML is empty

2018-03-05 Thread Florian E
Hi, I have problems to connect Jenkins and HP ALM. I want to start a SW build with Jenkins and see the result of the build process in HP ALM (success, unstable, failure, ...). My configuration - call it Jenkins-New: Jenkins LTS ver. 2.89.4 HP ALM 11 ALI 2.0 Hudson Integration with HP ALM -

HP ALI Integration - Empty Build Configurations list

2018-03-05 Thread Florian E
Hi, I have problems to connect my Jenkins server with HP ALM to show the builds which I start with Jenkins and want to show in HP ALM. I am using the following configuration - lets call it *Jenkins-New*: Jenkins ver 2.89.4 (LTS) HP ALM 11 ALI 2.0 I installed the plugin "*Hudson Integration