Re: v3.9

2015-12-17 Thread Baptiste Mathus
Jenkins runs on a JVM. Then it should mostly be dependant on which JRE version is installable on that version. Le 18 déc. 2015 2:52 AM, "Ashish Yadav" a écrit : > Can Jenkins be installed and run on CentOS release 3.9? > > -- > You received this message because you are subscribed to the Google Gr

v3.9

2015-12-17 Thread Ashish Yadav
Can Jenkins be installed and run on CentOS release 3.9? -- 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...@googlegroups.com. To view th

Re: publish over ssh: send only commit scripts

2015-12-17 Thread Baptiste Mathus
How about something like: *rm -rf transitdir* *mkdir transitdir* *cp $(git diff-tree --no-commit-id --name-only -r HEAD) transitdir* Then configure publish over ssh to copy every files of that "transitdir" directory. Does that help? 2015-12-17 20:09 GMT+01:00 Ismaila Baradji : > hi Batmat, >

Re: Cannot run Job Generator from Freestyle Project when passing multiple parameters

2015-12-17 Thread Ranando King
I'm a bit green when it comes to Jenkins. From what I can see, I don't have any scripts in my job that are causing this problem. It only occurs when I try to send multiple parameters to a Job Generator. What I need to be able to do is pass the environment from the current job (a freestyle job) t

Re: [Requet For Comments] Build Docker image and Publish to Google Container Registry

2015-12-17 Thread Ricardo Balduino
Hi Nicolas, I think this a great way to provide automation on the deployment of containers. I followed your steps above to make the first portion of this process work, that is, to build and push a container image to GCR using Jenkins. Now I'm stuck at the very last part, that is, spinning up the

Re: publish over ssh: send only commit scripts

2015-12-17 Thread Ismaila Baradji
hi Batmat, thanks for your help. I create a shell execute commande and add: $ git diff-tree --no-commit-id --name-only -r GIT_COMMIT but how to copy theses files and how to put in the publish over ssh parameters such as Source files, Remove prefix ? I read the documentation https://wiki.jenkins

Re: Restart an API with Jenkins

2015-12-17 Thread Victor Martinez
Hi there, You will need to script your logic and try locally then you can mimic those manual steps in your jenkins job and configure it in order to be triggered every hour. Can you configure your shebang to have some verbose output with the -x flag? TIPS: if you use sudo then be sure your j

Re: Cannot run Job Generator from Freestyle Project when passing multiple parameters

2015-12-17 Thread Victor Martinez
Hi there (beforehand), AFAIS there is cast issue when converting a StringParameterValue to GeneratorKeyValueParameterValue, basically it means that script is somehow expecting another kind of input parameter. Can you review your script? It's worth if you gist your script to help you out Chee

Restart an API with Jenkins

2015-12-17 Thread GBANE FETIGUE
Hey Folks, I am trying to create a jenkins job to restart a nodeJs API that I am having on my server( /etc/init/ovrc-dashoard-api). that's job need to be running the job every hour(@hourly). again the app is a nodejs app and is located on a server. all i need is an idea how to restart the API (n

Cannot run Job Generator from Freestyle Project when passing multiple parameters

2015-12-17 Thread Ranando King
I've tried creating a Freestyle Project with multiple parameters. That works fine. I've tried creating a Job Generator with multiple generator parameters. That works fine. I've tried calling the Job Generator from the Freestyle Project passing a single pre-defined parameter (key=value). That wor

Re: Pass values from Shell script to Workflow script in Jenkins Workflow plugin

2015-12-17 Thread Brian Ray
We're using this technique too and I think it's the only hack available for the time being. JENKINS-26133 may some day yield a more elegant, native way to get results back out to the workflow. On Thursday, December 17, 2015 at 8:51:00 AM UTC

Re: Cucumber reporting graphs not showing

2015-12-17 Thread Brian Ray
Awesome. We've opened up that filter a bit to accomodate some CSS and column sort scripting with the Cucumber Reports pages, but still have Flash content blocked. So no bouncing pie charts for us for the time being. On Thursday, December 17, 2015 at 4:09:39 AM UTC-8, donovan.b...@gmail.com wrot

Re: Pass values from Shell script to Workflow script in Jenkins Workflow plugin

2015-12-17 Thread B.Latinville
If you have not found yet, this could help you : https://github.com/jenkinsci/workflow-examples/blob/master/workflow-examples/gitcommit/gitcommit.groovy -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this group and stop r

Re: 1.625.1 and Java 7

2015-12-17 Thread Mark Waite
Master and all slave nodes must run Java 7. Mark Waite On Thu, Dec 17, 2015 at 8:43 AM Ashish Yadav wrote: > Does Jenkins LTS v1.625.1 require all slave nodes and master to run Java > 7 or just the master to run Java 7? > > -- > You received this message because you are subscribed to the Googl

1.625.1 and Java 7

2015-12-17 Thread Ashish Yadav
Does Jenkins LTS v1.625.1 require all slave nodes and master to run Java 7 or just the master to run Java 7? -- 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 j

Re: JUnit archiving plugin stopped working after installation of another plugin.

2015-12-17 Thread Tomasz Kosiński
Downgrade of JUnit Publisher plugin from version 1.9 to 1.2 helped to solve this problem on my jenkins 1.585. W dniu czwartek, 10 grudnia 2015 10:36:00 UTC+1 użytkownik Tomasz Kosiński napisał: > > Currently I'm getting following error when it comes to archiving JUnit > test results: > > Record

Multiple Test Reports in Job Page not fixed yet in MatrixJob with FlexiblePublish

2015-12-17 Thread Martin Perzl
I think that https://issues.jenkins-ci.org/browse/JENKINS-26077 is not fixed yet in the latest jenkins release. I am using the latest Jenkins 1.642 with xUnit plugin 1.99 and Robot Framework plugin 1.6.2. Could not post to the Jenkins JIRA (account signup disabled due to spam problems...), so

Re: Zero Day attack due to Apache Commons statement to widespread Java object de-serialisation vulnerability

2015-12-17 Thread Stephen Connolly
Correct... the evil job type is... evil... Freestyle will work just fine You also should be able to make toolchains work, i.e. that Maven can use Java 7 or 8 to run and Java 6 to compile. Keep in mind that JDK 9 or JDK 10 will have a lower bound on the -target so that you will probably be only a

Re: Jenkins 1.625.2

2015-12-17 Thread Baptiste Mathus
Hi, Where/which plugin are coming those tables from? What are you expecting? (there are ~1200 plugins, hence it's generally better to provide your env details to ease being helped). (Btw, beware that 1.625.3 has been published and contains security fixes). Cheers 2015-12-17 11:23 GMT+01:00 Shaki

Re: publish over ssh: send only commit scripts

2015-12-17 Thread Baptiste Mathus
Hi, What is "commit files"? Do you mean something like "the files that were touched by the last commit" ? If so, then it should be pretty easy to introduce a shell step for example that would call something along $ git diff-tree --no-commit-id --name-only -r bd61ad98

Re: Cucumber reporting graphs not showing

2015-12-17 Thread donovan . bailey2015
This works great now thanks! Our version of Jenkins is 1.642 so is affected by the new security features which did indeed break Cucumber Reports. For clarification for others, i edited /etc/sysconfig/jenkins and added -Dhudson.model.DirectoryBrowserSupport.CSP= to JENKINS_JAVA_OPTIONS to get ar

Re: how to cancel build queue jobs in jenkins by only using the build number, which are not started by jenkins and are in its build queue through REST API

2015-12-17 Thread Baptiste Mathus
Beware that deleting is not the same as cancelling a build. If I were you I'd have a look at system groovy script instead of rest api. Cheers Le 15 déc. 2015 2:56 PM, "tushar singhal" a écrit : > how to cancel build queue jobs in jenkins by only using the "build > number" through REST API, which

Re: How to migrate jenkins from windows master server to linux

2015-12-17 Thread Baptiste Mathus
Hi, search the ml archive about it there were many very complete threads about it recently. In short: that should be straightforward: copy the whole .jenkins directory from source to target home, then start Jenkins. Then: check logs, start builds and see if they (seem to) behave like before. Cheer

Re: restart a nodejs app

2015-12-17 Thread GBANE FETIGUE
Thanks for responding me I am using ubuntu 12.04 I just to have jenkins take care of that On Wednesday, December 16, 2015 at 11:10:26 PM UTC-5, Richard Bywater wrote: > > I'm interested in why you would use Jenkins when cron would seem to be a > better fit? > > Aside from that, you haven't said

Jenkins 1.625.2

2015-12-17 Thread Shakir Ali
Hi Jenkins Team, We are moving from Jenkins 1.580.3 to Jenkins Jenkins 1.625.2. The* Build Summary* is not coming in proper alignment in Jenkins 1.625.2 When we are running combination of plugins then Build Summary is not coming in proper alignment. I attached the screen shot for the same -- Yo