Workspace not visible on master even after copied with the 'copy to slave' plugin

2017-01-18 Thread Victor Martinez
Hi, Does '**/*' work rather than '*'? If you add some loggers, IMO it is always worth adding the plugin package name to debug loggers. In your case you need to: - Look for the source code url: https://wiki.jenkins-ci.org/display/JENKINS/Copy+To+Slave+Plugin - Open the class you'd like to debu

Did anyone has any idea how to trigger Jenkins build every 50 days?

2017-01-18 Thread Victor Martinez
Have you tried to look for how to run a cron every XX days on Google? I've found some references in StackOverflow - http://stackoverflow.com/questions/8699075/how-to-set-cron-job-for-every-45-days Cheers -- You received this message because you are subscribed to the Google Groups "Jenkins Use

Did anyone has any idea how to trigger Jenkins build every 50 days?

2017-01-18 Thread reddy yerapa
My use case is to trigger a build in Jenkins every 50 days. I know it uses a cron expression, I am not able to find the exact cron expression. Please help me if anyone has used it or any idea is also helpful Thanks -- You received this message because you are subscribed to the Google Groups "

Workspace not visible on master even after copied with the 'copy to slave' plugin

2017-01-18 Thread Raghu Pallikonda
Hi Jenkins Experts, I am working with a Jenkins 2.19 instance configured with the 'Kubernetes Plugin v 0.9'. The Jenkins job is configured with the 'copy to slave' plugin v 1.4.4. The 'Post Build Actions' step of that plugin 'Copy files back to the job's workspace on the master node' is

Re: Scoverage reports

2017-01-18 Thread Gastón Tonietti
Hi Daniel, Indeed I have plenty of security errors on the console when trying to load the html report. But TBH I'd be more interested in setting up the scoverage plugin as it generates a trend graph too. Are you aware of the syntax I should use in my Jenkinsfile to enable it? Thank you! Gaston

Re: Restartable Pipeline stages

2017-01-18 Thread Sam K
The non declarative pipeline way where multiple jobs were stitched together, this was possible. But not with declarative pipelines. Looks like the blue ocean project is aiming to address this issue...maybe? For my pipeline, we have to rerun test suites sometimes because they fail intermitte

Re: SCM API 2.0 impact on SVN plugin?

2017-01-18 Thread Stephen Connolly
To clarify, the SCMSource part of subversion plugin was written correctly... there are other parts that are not correct (such as how Credentials get used from remote agents)... but they do not concern scm-api On Wed 18 Jan 2017 at 10:06, Pieter-Jan Busschaert < pieterjan.busscha...@gmail.com> wrote

Re: Having trouble with Jenkins 2 checking out code in a PR under github org

2017-01-18 Thread nwalke
I believe this is caused by the Github Branch Source Plugin being version 1.10.1 after having read through this: https://jenkins.io/blog/2017/01/17/scm-api-2/ -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this group and

Re: @script runs with a different branch

2017-01-18 Thread Dave LeBlanc
Small correction - the @script is at the proper version, but the main workspace is on the odd branch. The main build info screen says: Revision: 116ec7be055b760122bc2ae310622fc7c91df5fe origin/dml/jenkins-testing Revision: 97a1e48ebb50c62ff5fce3a69e789ff236fd79fd origin/dml/other-unrelated-br

Jenkins fingerprint cleanup job schedule

2017-01-18 Thread Ashish Yadav
Where in Jenkins is the fingerprint cleanup job or run schedule defined? What does this fingerprint cleanup job do? I am seeing A LOT of these errors everything the job runs. I even restarted Jenkins but I am still getting these errors. I know build #93 does not exist on the server. Why is thi

[Event Announcement]: Jenkins World Registration is Open

2017-01-18 Thread Alyssa Tong
Hi All, The Jenkins World registration is open, I wanted to pass this along so folks can take advantage of the super early bird price. Jenkins World 2017 will be held in San Francisco at the Marriott Marquis the week of August 28, 2017. Here is an outline of main pass options and pricing: -

@script runs with a different branch

2017-01-18 Thread Dave LeBlanc
Hi folks, having a heck of a time setting up my new Jenkins instance here. I'm using the newest 2.40 build with the newest plugins and the pipeline style, and I think I mostly have the github hook stuff in place, the only issue being: When I push a branch (test-branch), the github hook is cal

Stdout from nix type nodes goes to jenkins.log while output from windows goes to pipeline

2017-01-18 Thread Rinaldo DiGiorgio
When one issues a shell command on windows and nix the command is not processed the same way. On windows the output goes to the console log of the job. On *nix the output goes to the jenkins.log file. How does one get the output of nix nodes to appear in the log? This may be related to this

WARNING: JENKINS-34021: could not get TaskListener in CpsStepContext[435:bat]

2017-01-18 Thread Rinaldo DiGiorgio
My log has 100s if not 1000s of the following. Jan 18, 2017 2:32:19 PM org.jenkinsci.plugins.workflow.steps.durable_task.DurableTaskStep$Execution logger WARNING: JENKINS-34021: could not get TaskListener in CpsStepContext[435:bat]:Owner[9-dev/1942:9-dev #1942] java.io.IOException: cannot find

Jenkinsfile, running in two modes and tracking results

2017-01-18 Thread 'Ian Smith' via Jenkins Users
Hi, I am currently looking at using a Jenkinsfile instead of manually creating jobs with the view of moving forward with the multi pipeline approach of doing jobs. However there seems to be a limitation in the Jenkinsfile that I can't seem to get around. I currently have two jobs that use the

Re: Scoverage reports

2017-01-18 Thread Daniel Beck
> On 18.01.2017, at 01:39, Gastón Tonietti wrote: > > I tried with publishHTML, the report seems to be there in the build but when > I open it only a couple of blank frames are shown. Check your browser's error console. Maybe this is SECURITY-95? https://wiki.jenkins-ci.org/display/JENKINS/Co

Enable JMX on Jenkins on CentOS 7.x

2017-01-18 Thread mcfong . open
Hi, all, I have some difficulties trying to enable jmx on jenkins for exporting jvm metrics to an external monitor server. I tested with the following jvm argment on Centos 7.2 server but with no luck -Djava.rmi.server.hostname= -Dcom.sun.management.jmxremote.port= -Dcom.sun.management.jmxremot

Re: Restartable Pipeline stages

2017-01-18 Thread gulli
It seems to me that jenkins 2 pipelines are not really pipelines. From my perspective, someone missed a key ingredient for pipelines and build stages when designing this featureset, which is that build stages must operate on independent schedules, and must be independently repeatable. As a CI/CD

Re: SCM API 2.0 impact on SVN plugin?

2017-01-18 Thread Pieter-Jan Busschaert
On Wednesday, 18 January 2017 07:07:22 UTC+1, Stephen Connolly wrote: > > Subversion plugin was written correctly from the start. > > There will be an update to enhance event processing (but due to caching in > the plugin that's not as critical) > Thanks a lot for your reply! -- You rece

Commit SVN with Jenkins

2017-01-18 Thread Corentin Bouchrit
Hello, Here is my problem: I was creating a file in jenkins jobs and I would like to commit it to a accurate location in svn. I not find plugin to do this, would you have any idea? cordially -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group.

Re: [Solved] Jenkins doesn't start promotion job

2017-01-18 Thread Dirk Heinrichs
Hi, turned out to be a permissions problem. However, would have expected a proper error message instead of simply doing nothing. Bye... Dirk -- *Dirk Heinrichs* Senior Systems Engineer, Delivery Pipeline OpenText^TM Discovery | Recommind *Email*: dirk.heinri...@recommind.com