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
1
vote
2 answers

How to login to CVS with extssh

I'm trying to setup Hudson to pull from a CVS repo, and need a .cvspass file to do that, and to generate .cvspass, I need to first login manually to CVS (AFAIK). CVS server in question only seems to support extssh, and I can't figure out how to…
Robert Kovačević
  • 1,378
  • 4
  • 16
  • 23
1
vote
1 answer

Hudson is not exec-ing my bash-based build script

i have a simple "free-style" test job in huson. it checks out a file from git (it does that part successfully) it is also supposed to exec a script that appends to that file. the script looks like: #!/bin/sh -ex echo "$0 was run on " `date` >>…
nodnarb
  • 21
  • 3
1
vote
0 answers

Are there any jenkins plugins for choice parameters that amend themselves after a new entry?

Are there any jenkins plugins for choice parameters that amend themselves after a new entry if the build succeeds? Basically, something like this: -Choice Parameter- Name: All_Choices_So_Far Choices: First_Default_Choice ${New_Choice} So when…
kayleeFrye_onDeck
  • 6,648
  • 5
  • 69
  • 80
1
vote
1 answer

Is it possible to disable "People" view in Hudson?

I would like to disable page "People" in Hudson. I don't want users to see other users. Is it possible to do?
yegor256
  • 102,010
  • 123
  • 446
  • 597
1
vote
2 answers

In Hudson, how do I set multiple environment variables given a single parameter?

I want to set up a parameterized build in Hudson that only takes one parameter -- the type of build to create (QA, Stage, Production). However, each of those builds requires several different environment variables to be set. Something like…
roufamatic
  • 18,187
  • 7
  • 57
  • 86
1
vote
1 answer

problem with hudson

I am using Hudson for 6 projects, and most all of them are configured as a continious integration. I have a problem with one of the continious integration is not working; when somebody checks in the code in the perforce, it's not triggering the…
user524398
  • 11
  • 1
1
vote
1 answer

How to fail a Hudson job if a certain string occurs in console output

is there a way to make a hudson job fail if a certain string occurs in the console output? The reason I ask is because we have some jobs that deploy EAR files (via mvn commands) and even though the job runs successfully, I see a string like…
Jesper Rønn-Jensen
  • 106,591
  • 44
  • 118
  • 155
1
vote
1 answer

why do CollabNet Subversion Client and TortoiseSVN both update projects fine, but within Ant fails

I can manually update individual projects using CollabNet or Tortoise no problem. But my ant script (executed from Hudson) containing
Giles
  • 63
  • 3
1
vote
3 answers

Hudson JDepend Plugin does not work

I am trying to build a continuous integration environment for php using hudson. I am running a shell script, which generates my phpdepend output, which can be used by the jdepend plugin. Although the xml-File is ready, the plugin throws an…
Martin Kapfhammer
  • 260
  • 1
  • 4
  • 18
1
vote
1 answer

Hudson "Perform Maven Release" fails on committing to svn+ssh on different port

We have svn+ssh setup on non-standard port. We added svn+ssh credential in Hudson, when it asked us. Ordinary build goes fine, without any problems: Started by user anonymous Checking out svn+ssh://xxx:22222/usr/local/svn_repo/repo/project/trunk A …
Maksim Sorokin
  • 2,334
  • 3
  • 34
  • 61
1
vote
1 answer

build failed in hudson when building job for deploy target

Have built a simple ADF web application in jdevelper and built ant build file when i run the file all ant targets run fine however when i try to run targets in hudson all targets run fine except deploy target and the build failed and have this…
test
  • 13
  • 3
1
vote
1 answer

Hudson Error: Unable to call isArchivingDisabled. Invalid object ID

I get this error when building a project, that could be built without problems before: [INFO] Trace java.lang.IllegalStateException: Unable to call isArchivingDisabled. Invalid object ID 5 at…
taco24
  • 100
  • 7
1
vote
1 answer

Display PHP_Depend overview pyramid in hudson

Does anyone know how it can be displayed the overview pyramid and the jdepend chart generated by PHP_Depend, in hudson?
Madalina
  • 1,297
  • 6
  • 15
  • 25
1
vote
0 answers

How to restore artifacts in Jenkins multibranch job?

I wrote two steps in Jenkinsfile to save and restore artifacts: def buildCache = 'packages-deps.tgz' //... stage('Restore cache') { unarchive mapping: [(buildCache): buildCache] sh "[ -a ${buildCache} ] && tar xf…
lessless
  • 866
  • 10
  • 27
1
vote
1 answer

Hudson SVN plugins makes exception for private repository updates

I'm new user of Hudson. I'm running the Hudson in my company network. The source codes for my projects are in the repository of other IDC. The repository itself doen't allow public connection, so we makes a slave node machine for Hudson which can…
xster
  • 11
  • 3