Questions tagged [hudson]

Hudson is an extensible continuous integration server written in Java and capable of running on Linux, OS X and Windows.

In early 2011, Hudson was forked into the Hudson and Jenkins projects after a trademark dispute with Oracle.
Hudson remains an open source project, now governed by the Eclipse Foundation, with Oracle being the primary contributor.

The majority of Hudson users, core and plugins developers switched to Jenkins (tag: ).

Hudson has a wide variety of plugins that integrate external tools and source control systems, provide build reports and analytics, and customize build behaviours.

It is common to configure a Hudson installation to run build slaves on several machines in order to build on different platforms, or to provide load balancing.

2658 questions
41
votes
6 answers

Hudson on Windows - Error: java.io.IOException: Cannot run program "sh"

I am trying to do continuous integration with Hudson and MSTest. When I try to run this job I get the following error: 1 Warnung(en) 0 Fehler Verstrichene Zeit 00:00:00.13 [workspace] $ sh -xe C:\Windows\TEMP\hudson4419897732634199534.sh The…
Markus_DE_HH
  • 1,061
  • 3
  • 13
  • 29
41
votes
12 answers

Putty won't cache the keys to access a server when run script in hudson

I had a simple automation process to write which needed to copy a few files from linux server to windows via SSH. This can be accomplished using putty. SSH, as part of the protocol, verifies the host’s identity and if not known to be correct, will…
Charlotte Xu
  • 411
  • 1
  • 4
  • 4
40
votes
3 answers

Hudson Build-Time Trend Plugin?

Is there a plugin which would allow me to create a "trend" graph for a hudson build which shows the build time for that project? I'm tasked with speeding up the build and I'd like to show a nice trend as I speed it up.
SamBeran
  • 1,944
  • 2
  • 17
  • 24
39
votes
8 answers

In Hudson, how do I get the current build's git commit sha?

We are using Hudson with git. We have a build/test server which compiles our project and then a QA server to which we need to deploy. We want to get the current built git commit sha and use it to pull the appropriate commit for deployment on our QA…
SharePoint Newbie
  • 5,974
  • 12
  • 62
  • 103
38
votes
4 answers

Hudson/Jenkins Git build all branches

We have a lot of developers creating feature branches that I would like to build. Nightly we run a code quality tool that needs to run on every branch. I also would not like a static configuration because the number of branches changes every few…
babsher
  • 1,016
  • 2
  • 8
  • 11
37
votes
5 answers

How to integrate soapUI with Jenkins?

Anyone know a good way to add soapUI tests to my CI builds ?
Michael
  • 22,196
  • 33
  • 132
  • 187
36
votes
4 answers

Keychain won't unlock from Jenkins script unless user logged in

I'm running a Jenkins CI server on an OS X machine. The server is running as a standard user 'john', and is started by running launchctl. One of the things this server does is build XCode projects using keys and certificates stored in a keychain…
user756365
36
votes
7 answers

Use Hudson to build a specific git commit

I have a hudson build server. The source code is managed by a git repository. For each build the latest version is checked out and compiled. Now i'd like to tell hudson to use not the latest version, but an older version of the code (specified by…
Bernd
  • 361
  • 1
  • 3
  • 3
36
votes
4 answers

Help me improve my continuous deployment workflow

I've been developing a workflow for practicing a mostly automated continuous deployment cycle for a PHP project. I'd like some feedback on possible process or technical bottlenecks in this workflow, suggestions for improvement, and ideas for how to…
Josh Smith
  • 14,674
  • 18
  • 72
  • 118
36
votes
8 answers

Renaming job in jenkins/hudson

I have tried to rename a hudson/jenkins job. However it failed to rename. Is there any way so I can rename the job?
user2010736
35
votes
11 answers

How to get list of changed files since last build in Jenkins/Hudson

I have set up Jenkins, but I would like to find out what files were added/changed between the current build and the previous build. I'd like to run some long running tests depending on whether or not certain parts of the source tree were…
Allan
  • 671
  • 1
  • 5
  • 8
34
votes
4 answers

How can I prevent two Jenkins projects/builds from running concurrently?

I have two Jenkins projects that share a database. They must not be run simultaneously. Strictly speaking, there is no particular dependency between them beyond non concurrency, but at the moment I partially manage this constraint by running one…
jackr
  • 1,407
  • 1
  • 14
  • 29
33
votes
8 answers

Sharing build artifacts between jobs in Hudson

I'm trying to set up our build process in hudson. Job 1 will be a super fast (hopefully) continuous integration build job that will be built frequently. Job 2, will be responsible for running a comprehensive test suite, at a regular interval or…
33
votes
4 answers

hudson+git FATAL: Could not apply tag

I'm trying to set up hudson with git according to this article, but I still get git errors during build: FATAL: Could not apply tag-PROJECTNAME-ID ... Caused by: hudson.plugins.git.GitException: Command returned status code 128: *** Please tell me…
takeshin
  • 49,108
  • 32
  • 120
  • 164
32
votes
7 answers

How can I update jenkins plugins from the terminal?

I am trying to create a bash script for setting up Jenkins. Is there any way to update a plugin list from the Jenkins terminal? At first setup there is no plugin available on the list i.e.: java -jar jenkins-cli.jar -s `http://localhost:8080`…
anilyeni
  • 744
  • 1
  • 8
  • 13