The Hudson API provides you to communicate with its basic functionalities via REST.

learn more… | top users | synonyms

0
votes
1answer
50 views

Hudson + Email Extension Plugin+ Add BCC and CC

I am using Email extension plugin with Hudson. There is only TO list option available with the plugin. Is there any way I can add CC and BCC options? Please guide.
1
vote
1answer
67 views

Hudson + get the build status

I have a job 'A' running with hudson and Ant. If the current build status is Fail, I need to run the build "A" after 3 hours again. If the current build status is Success, nothing to do. Is there any ...
0
votes
0answers
53 views

How to specify FileParameterDefinition parameter in Build hudson api?

I have Hudson build user interface, which takes some inputs as a string and there is a one parameter called Browse File button , which ask user to upload the file. Then after giving all input, i need ...
3
votes
1answer
235 views

How to programmatically add a job to a view in hudson

I have a Java program controlling automatically generated jobs for a set of hudson servers. It is no problem to create, delete or update job(config)s using the hudson remote API. I also managed it to ...
0
votes
1answer
724 views

Showing exception while connecting slave to master using headless jnlp

i am using jenkins 1.447.2 version.My master is linux and slave is windows Jul 27, 2012 12:44:17 PM hudson.remoting.jnlp.Main$CuiListener <init> INFO: Hudson agent is running in ...
0
votes
1answer
214 views

How to put condition on post build actions?

I have job A and B. Commit will be polled by job A and build is happening on Job B. So I did promoted plugin for email ext after completion of job B to send email from job A. I have some periodic ...
0
votes
0answers
180 views

Project relationship between upstream and downstream jobs

I am creating fingerprints for job A and job B, when I check fingerprints of job A it's showing md5sum as one id. For job B also it's showing same id for the file I have given in both job A and job B ...
2
votes
2answers
483 views

Get last successfull build on Hudson

I was wondering if anyone know of a way or a plug in to get the last build version with result of success from a particular Hudson job using the CLI somehow. I can see this result is held in the ...
11
votes
1answer
207 views

Commit based view of Jenkins builds

I would like to be able to present a view of Jenkins builds similar to the buildbot console view. With Jenkins out of the box, there appears to be really no good way to associate a commit with a ...
4
votes
2answers
545 views

How to configure Jenkins to build project from different branches in Mercurial

I have a Jenkins build job with a Mercurial trigger on the default branch, which works fine for building "release candidates". This job then starts a smoke test job. We use a branch-per-feature ...
1
vote
1answer
1k views

How to use tree query parameter in Jenkins Remote API to get downstreamProject and parameter?

I am trying to use Jenkins(Hudson) Remote API to consume XML response from a freeStyleProject. Researching about the tree query parameter in the Jenkins documentation and here I have been trying to ...
3
votes
3answers
3k views

Determine if given job is currently running using Hudson/Jenkins API

Is there an API to determine whether a given job is currently running or not? Ideally, I'd also like to be able to determine its estimated % complete and get the details of the SVN revision number ...
1
vote
1answer
101 views

How to package hudson.war with extra plugins installed by default

I am wondering if it is possible to re-package the basic hudson.war with some extra plugins so they are installed by default for the end user. If so, what is the process to do this? I've got a ...
2
votes
0answers
156 views

Using UserNameResolver in Jenkins / Hudson

I'm trying to write a plugin that provides users' real name and email addresses from the data in our Active Directory. We use the ActiveDirectory plugin for authentication, which does not set these ...
2
votes
1answer
674 views

Command to perform “Prepare for Shutdown” task

Is there a command that will put the hudson in maintenance mode. I mean, before shutting down the Hudson we first need to click "Prepare for Shutdown" button in "Manage Hudson" UI page, is it possible ...
3
votes
1answer
2k views

HUDSON: How to stop hudson job from command line?

I need to forcefully stop a Hudson build running in remote server. Is there a command/API to do that? for ex: to trigger a new build we can do :- HUDSON_URL/job/JOBNAME/build looking for similar API ...
4
votes
2answers
3k views

How to access Hudson job1 artifacts from another job2?

We have a production job and a nightly job for a project in Hudson. The production job needs to pull off some artifacts from a specific nightly build # (which is provided as parameter). Can anyone ...
0
votes
1answer
581 views

OutOfMemoryError in hudson [duplicate]

Possible Duplicate: java OutOfMemoryError in hudson I'm getting following error in hudson ver 1.395 BUILD SUCCESSFUL Total time: 16 minutes 44 seconds FATAL: Java heap space ...
4
votes
2answers
620 views

Set Hudson Build Description via Web API

I have a Python script that operates on Hudson builds and would love to be able to set the description of a build programmatically. I can click "Add Description" on a build's page and fill in the ...
1
vote
1answer
545 views

How to get a better performance from Hudson CI API?

I'm trying to write a little tool for myself that would integrate with Hudson build server. The current roadblock that I've hit is performance. I'd like to do a simple thing like have a list of all ...
2
votes
1answer
2k views

Finding Hudson Log Files

Does anyone know how to search a Hudson server for the incremental log files that are generated from running reoccurring JUnit tests? The Hudson dash board will show the last twenty tests, but we are ...
0
votes
1answer
480 views

Exporting test data result in Hudson

Does anybody know of an easy way to export test results in Hudson? We have some integration tests that are failing intermittently and our executives would like an excel-style report of the failures, ...
0
votes
1answer
327 views

Hudson: where to download file and stop specific builds running?

I have a file that is generated inside (hudson server) /var/lib/hudson/jobs/jobtitle/1/out.txt I need to fetch this file, but doing a GET request for http://myhudson:8090/job/jobtitle/1/out.txt ...
1
vote
1answer
575 views

File upload + parameter via HTTP POST to trigger a Hudson build

Currently i'm searching for a working method to upload a file + a field in the following confiuguration of Hudson. The current problem is that Hudson always complains about a form which should be ...
0
votes
2answers
602 views

hudson cli to wait for unfinished builds

Part of our CI/continuous-test system needs to re-deploy build/test nodes. so far I'm marking them offline and then waiting for twice as long as a build usually takes... which is not very elegant. ...