Re: Testing Shared Libraries and Pipelines in Jenkins

2017-02-08 Thread Carlos Camacho
Thank for your answer jesse. My next questions will be publish in the users list. Kind Regards El miércoles, 8 de febrero de 2017, 15:11:15 (UTC), Jesse Glick escribió: > > This is a question for the users’ list, unless you have a proposal for > implementing JENKINS-33925. > -- You received

Display the status of multi jobs on multi nodes as matrix/table

2017-02-08 Thread Gavin Mogan
Unless you are working on a plugin or core itself, this is a post for the users list. jenkinsci-us...@googlegroups.com -- You received this message because you are subscribed to the Google Groups "Jenkins Developers" group. To unsubscribe from this group and stop receiving emails from it, send

Display the status of multi jobs on multi nodes as matrix/table

2017-02-08 Thread Reed Xia
Hi all, My project is using Jenkins 1.568, we set up a few jobs, and each job run on 4~8 nodes, I want to have a table/matrix to show the real-time status of all status. Something like following:

Re: Seeking Advice on Building First CI

2017-02-08 Thread Owen Mehegan
This list is for discussing the development of Jenkins and its plugins. Please ask your question on the Users list: https://groups.google.com/forum/#!forum/jenkinsci-users On Wed, Feb 8, 2017 at 1:18 PM, Robert Werner wrote: > I'm building a Jenkins based CI for the first time. Here are the use

Seeking Advice on Building First CI

2017-02-08 Thread Robert Werner
I'm building a Jenkins based CI for the first time. Here are the use cases I'm considering for it: 1. Ability to run Unit Tests, Integration Tests, & Acceptance Tests in Local Dev environment (without Jenkins). 2. Ability to run Unit Tests, Integration Tests, & Acceptance Tests in

Re: Windows builds/tests for core disabled

2017-02-08 Thread Daniel Beck
> On 08.02.2017, at 21:58, Slide wrote: > > It doesn't look like it did, I only see a Linux build happening see [1]. I > don't think I have direct commit rights on jenkinsci/jenkins. I created a branch and added the Windows build back on it. https://github.com/jenkinsci/jenkins/tree/windows-

Re: Jenkins parameters weather to send an email notification or not

2017-02-08 Thread Daniel Beck
> On 08.02.2017, at 21:57, siva.datla...@gmail.com wrote: > > th process to follow please You could start by asking this on the correct mailing list. https://jenkins.io/content/mailing-lists -- You received this message because you are subscribed to the Google Groups "Jenkins Developers" gro

Re: Windows builds/tests for core disabled

2017-02-08 Thread Slide
It doesn't look like it did, I only see a Linux build happening see [1]. I don't think I have direct commit rights on jenkinsci/jenkins. 1 - https://ci.jenkins.io/job/Core/job/jenkins/job/PR-2740 On Wed, Feb 8, 2017 at 4:18 AM R. Tyler Croy wrote: > (replies inline) > > On Tue, 07 Feb 2017, S

Jenkins parameters weather to send an email notification or not

2017-02-08 Thread siva . datladba
Hello all, I am new to jenkins I have a jenkins build running on a groovy script which sends out an email notification with build status. I also have another jenkins build where we don't want to use groovy syntax to send notifications so we are going with parameter where I have set a way in drop

Re: Testing Shared Libraries and Pipelines in Jenkins

2017-02-08 Thread Jesse Glick
This is a question for the users’ list, unless you have a proposal for implementing JENKINS-33925. -- You received this message because you are subscribed to the Google Groups "Jenkins Developers" group. To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsc

Re: Search for a plugin to analyse code design problems

2017-02-08 Thread Mark Waite
https://en.wikipedia.org/wiki/List_of_tools_for_static_code_analysis provides a good list of tools which provide static analysis for various languages and platforms. https://en.wikipedia.org/wiki/Dynamic_program_analysis provides a list of tools which provide dynamic analysis (must run the code to

Re: Search for a plugin to analyse code design problems

2017-02-08 Thread Allen Geer
I think I would tackle this with a series of shell scripts (if we're dealing with linux). I would use some permutation of find . -type f -print0 | xargs -0 wc -l | sort -n; to list files by line length. There are several scripts available to check circular dependencies in source trees and I

Re: Search for a plugin to analyse code design problems

2017-02-08 Thread Mark Waite
Findbugs does a good job on certain classes of Java problems. Valgrind does a good job on certain classes of problems in c. Checkstyle and pmd can be helpful for Java. McCabe complexity reports are used in some organizations to detect complex code. Fortify and Coverity are commercial products w

Re: Windows builds/tests for core disabled

2017-02-08 Thread R. Tyler Croy
(replies inline) On Tue, 07 Feb 2017, Slide wrote: > I thought the Jenkinsfile wasn't picked up from anything but master. If I > am mistaken, I'll gladly do that. That depends on whether you are able to commit to the repository or not. As a committer, which IIRC you are, the GitHub Branch Sourc

Re: Search for a plugin to analyse code design problems

2017-02-08 Thread Tomas Bjerre
The ones that I know of are: https://wiki.jenkins-ci.org/display/JENKINS/Warnings+Plugin https://wiki.jenkins-ci.org/display/JENKINS/Violation+Comments+to+Bitbucket+Server+Plugin https://wiki.jenkins-ci.org/display/JENKINS/Violation+Comments+to+GitHub+Plugin And you may want to have a look at: ht

Testing Shared Libraries and Pipelines in Jenkins

2017-02-08 Thread Carlos Camacho
Hi everyone, In my company, we want to develop a shared Library ( https://jenkins.io/doc/book/pipeline/shared-libraries/) and to have several pipelines using that library. I am searching documentation on the internet about how test my library and my pipelines but I don't find too much. We have