Hudson plugins provide extensions to Hudson's basic capabilities. These include source code access, display, process control, and many others.
Questions tagged [hudson-plugins]
317 questions
8
votes
3 answers
Jenkins job status - Customize color / status of job
Is there a way to customize the status of a Jenkins job to use different icons or colors other than just simple blue/green ball icons.
Something like what we see in cloudbees Jenkins instance or similar.
https://jenkins.ci.cloudbees.com/
For more…

AKS
- 16,482
- 43
- 166
- 258
8
votes
2 answers
Moving Jobs between views in Hudson
I have a lot of jobs in hudson and multiple views as well. What I want is to move jobs between views. E.g. Job1 is part of view1, I want to move that job from view1 to view2, how it is possible.

Qasim
- 215
- 1
- 3
- 7
7
votes
2 answers
dunit test result messages in hudson
i am using Hudson as CI server for Delphi 2010 projects. The XMLTestRunner.pas unit writes DUnit test result to a xml file that is used by the hudson xUnit plugin to report test results. The xUnit plugin shows failures but no…

hansmaad
- 18,417
- 9
- 53
- 94
7
votes
3 answers
How can i convert a FilePath to a File?
I'm writing a Jenkins plugin and i'm using build.getWorkspace() to get the path to the current workspace. The issue is that this returns a FilePath object.
How can i convert this to a File object?

daniels
- 18,416
- 31
- 103
- 173
7
votes
1 answer
How to generate JUnit style XML report using TestNG?
I'm using TestNG framework for our integration testing. I want to generate JUnit style XML report using TestNG. My project does not use Ant but we use Maven. Can you please tell what is the format of JUnit style XML looks like and how to generate…

Anand Garlapati
- 107
- 1
- 1
- 5
6
votes
1 answer
Can a Hudson job set a description of its own build?
I'm aware there is Web API allowing this trick using current build number. But it requires authentication thus script must be edited on each hudson.
Is there a way to achieve that from script or through plugin?

Sergey Grinev
- 34,078
- 10
- 128
- 141
6
votes
1 answer
How to get jenkins to copy artifacts to a dynamic directory?
I'm trying to get Jenkins to copy the artifacts of a build to an archive directory on another server using the scp plugin.
Ideally, I'd like to be able to have the destination be dynamic based on the build version so the result would like…

afrosteve
- 891
- 2
- 11
- 16
6
votes
2 answers
How do I specify an option for git clone when using git plug in for Hudson?
I'm using Hudson with git plug in to run my automation tests. I want to specify an option when it runs git clone (eg. git clone --depth 1) to speed up the process. Is there any way to do this?

user534815
- 61
- 2
6
votes
2 answers
How to pass ${CHANGES} to downstream job?
I have upstream job that polls SVN for changes.
If changes are detected, the build is started.
After the build, the upstream project calls downstream project to run test. I'm using "Trigger Parameterized Build".
I want that downstream project will…

Pupsik
- 741
- 3
- 8
- 25
6
votes
5 answers
Jenkins Parallel Trigger and Wait
I have 4 jobs which needs to be executed in the following sequence
JOB A
|------> JOB B
|------> JOB C
|------> JOB D
In the above
A should trigger B & C parallely and C inturn triggers D.
A should hold the job as running till all…

raksja
- 3,969
- 5
- 38
- 44
6
votes
2 answers
How to include NodeJS tests into Gradle and Hudson?
We are a Scala/Java shop and we use Gradle for our build and Hudson for CI. We recently wrote some node.js code with tests in mocha. Is there anyway to get that included in our gradle workflow and setup in Hudson? I looked at the…

pathikrit
- 32,469
- 37
- 142
- 221
6
votes
2 answers
Force Jenkins Subversion plugin to use HEAD revision
I was using Hudson for doing my project builds and now planning to migrate to Jenkins.
The build server time is not in sync with the developer machines, and hence svn update does not work correctly. In Hudson, I was able to set the revision policy…

jobinbasani
- 2,075
- 6
- 47
- 66
6
votes
3 answers
Jenkins/Hudson SVN Issue
I have a (strange) issue on my Jenkins installation which basically leads to SVN updates failing on an alternate basis.
The stack trace shows two issues:
hudson.util.IOException2: revision check failed on (my repo)....
and
Caused by:…

Mark Micallef
- 1,051
- 2
- 12
- 25
5
votes
2 answers
How to remove the useless unconfigured items in matrix build of Jenkins/Hudson
I use Jenkins to configure my multiconfiguration build, which is like a snapshot.
The Axes I use are:
Labels: Mac10.6, Mac10.7, and Windows
Platforms: Mac10.6, Mac10.7, WinXP, Win7, and WinServer2008
Tasks: _App_Installer_, ATS, and so on
It is…

Michael Lin
- 81
- 3
5
votes
2 answers
Jenkins (Hudson) - Managing dependencies between parallel builds
Using Jenkins or Hudson I would like to create a pipeline of builds with fork and join points, for example:
job A
/ \
job B job C
| |
job D |
\ /
job E
I would like to create arbitrary series-parallel…

Martijn Rutten
- 763
- 6
- 14