Jenkins is the new name for the Hudson project. The community decided to rename the project after Oracle asserted trademark claims to the name Hudson (see hudson for questions related to the previous name). The software is licensed under the MIT license and has an active development community. ...

learn more… | top users | synonyms

133
votes
9answers
23k views

How to choose between Hudson and Jenkins? [closed]

It took me an hour or so to work out Hudson has only branched recently (Jan/2011) I have no idea how rapid the change of each branch is now, but more importantly, what is the direction each branch is ...
44
votes
9answers
15k views

Hudson or Teamcity for continuous integration?

We are a Java shop looking for a CI tool to use. Both Hudson and Teamcity seem to be free but Teamcity seems slicker and with more support. I was wondering why one would still use Hudson and if ...
18
votes
2answers
4k views

buildbot vs hudson/jenkins for C++ continuous integration

I'm currently using jenkins/hudson for continuous integration a large mostly C++ project. We have separate projects for trunk and every branch. Also, there are some related projects for the Java ...
18
votes
6answers
11k views

Hudson, C++ and UnitTest++

Has anyone used Hudson as a Continuous-Integration server for a C++ project using UnitTest++ as a testing library? How exactly did you set it up? I know there have been several questions on ...
17
votes
2answers
5k views

JUnit XML Format Specification that Hudson supports

I have Hudson as continuous integration server and I want to use option 'Publish JUnit test result report'. But I don't use xUnit tools for testing, instead of that i have shell scripts which run ...
16
votes
4answers
4k views

How to uninstall a plugin from Jenkins (Hudson)?

I have a few plugins in my Jenkins installation which I no longer need. I've already disabled the plugins (and my build still work), and I'd like to remove the plugins completely. What is the right ...
14
votes
3answers
2k views

Handling multiple branches in continous integration

I've been dealing with the problem of scaling CI at my company and at the same time trying to figure out which approach to take when it comes to CI and multiple branches. There is a similar question ...
14
votes
3answers
4k views

Authenticate Jenkins CI for Github's private repository

I'd like for Jenkins to automagically fetch data from my private repository hosted on Github. But I have no idea how to accomplish that task.. Tried the documentation, generating ssh-key for jenkins ...
12
votes
2answers
1k views

C++ Jenkins QA Stack / Tools

We are currently in the process of building a QA stack for you C++ development. We already have multiple Jenkins instances running and made very good experiences with the CI server in combination ...
12
votes
1answer
636 views

How to build an efficient maven/jenkins build queue

We use Jenkins as our CI system and Maven as our build tool. We have a SVN repository for our code and Artifactory for our artefacts. The source code is organized as a multi modul maven project. Most ...
12
votes
7answers
4k views

How can I make Jenkins CI with git trigger on pushes to master?

I'm trying to set up Jenkins-ci for a project using github. I've already set up jenkins with the appropriate plugins. I want jenkins to run build scripts only whenever someone on the project pushes to ...
11
votes
1answer
446 views

How to run Dojo DOH unit-tests through Jenkins?

Has anyone tried integrating Dojo DOH unit-tests with Jenkins? I'd like to do the following, but don't want to reinvent it if this has already been done. So, I'm thinking: Kick off the DOH-tests ...
10
votes
3answers
2k views

How to give Jenkins more heap space when it´s started as a service under Windows?

I want to increase the available heap space for Jenkins. But as it is installed as a service I don´t know how to do it.
10
votes
4answers
3k views

How to setup Authorization Hudson /Jenkins to clone your mercurial repository

After installing and playing around with mercurial , I am trying to get Hudson to clone the repository so it can build my project. At the moment the following task works. I Can sync to my external ...
10
votes
2answers
1k views

Running Hudson on EC2

I am planning to install Hudson on Amazon EC2 using Ubuntu image. The code I am going to test does not have a big memory overhead - I will be executing mainly python unit tests. Which EC2 instance ...
10
votes
5answers
3k views

Using Hudson and build steps with multiple git repositories

I'm trying out Hudson to replace our current Buildbot setup. I installed the git plugin. Our current setup is like: ssh://server:/repo/test_framework.git ssh://server:/repo/project_a.git Now, to ...
9
votes
2answers
324 views

Jenkins “I'll fix the build” plugin

does anybody knows if there is a Jenkins /Hudson plugin that when the build is broken it allows you to set some status (like I'll fix it! ) so that other people in the team know that Somebody is ...
8
votes
2answers
190 views

Is there a way to make jobs in Jenkins mutually exclusive?

I have a few jobs in Jenkins that use Selenium to modify a database through a website's front end. If some of these jobs run at the same time, errors due to dirty reads can result. Is there a way to ...
8
votes
4answers
388 views

Enforcing one build for one commit in Jenkins/Hudson

We use Jenkins for doing incremental builds of our project on each commit to the SCM. We would like to get separate builds for every single commit. However, the naive approach (setup SCM and use ...
8
votes
2answers
527 views

How can I show Expresso and node-jscoverage output in Hudson?

We use Hudson (well, Jenkins now) for CI. I have just started a project based on Node.js, and am investigating Expresso and Gently (testing and mocking). I really like the fact that Expresso works ...
8
votes
1answer
2k views

Jenkins User on Apt-Get Install Installation

I just installed Jenkins on my Ubuntu server via the debian installation steps (using apt-get install). I want my build to pull from a private git repository on GitHub. With that, I need to use SSH ...
8
votes
1answer
2k views

Any decent Eclipse plugin for monitoring Jenkins?

I have found an old plugin for Eclipse from 2009 to monitor a Hudson server but it has two major drawbacks: No support for multiple Hudson/Jenkins servers Clicking on a Job in the view results in a ...
7
votes
1answer
595 views

How to combine Vagrant with Jenkins for the perfect Continuous Integration Environment?

You have a project which has got some SW requirements to run (e.g.: a specific version of Apache, a version of PHP, an instance of a MySQL database and a couple of other pieces of software). You have ...
7
votes
2answers
272 views

Validate certificate and provisioning profile

On our iOS projects, we commit to the version control repository both the signing certificate and the provisioning profiles used to generate AdHoc and AppStore builds. This way, whenever a new ...
7
votes
3answers
3k views

Restarting Hudson on Windows

I've been having an issue with Hudson on windows. Whenever I update Hudson or a plugin I get the option to restart when no jobs are running. If I click this button Hudson hangs and doesn't restart. ...
6
votes
2answers
204 views

Integration-Manager Git Workflow using Jenkins/Hudson

I'm trying to implement a modified Integration-Manager workflow similar to what's described in ProGit. Instead of an integration manager performing the merges, I want developers to merge locally ...
6
votes
1answer
263 views

Format of SVN “Included Regions” in Jenkins

When setting up "included Regions" on a Jenkins project, the help text mentions this: If set, and Jenkins is set to poll for changes, Jenkins will ignore any files and/or folders that are not in ...
6
votes
2answers
460 views

JavaScript unit testing and continuous integration 2011

Most of the existing questions about unit testing JavaScript code and integrating it into a continuous integration environment seem to date back to the dawn of time (or at least 2008 or 2009 :) ). ...
6
votes
4answers
254 views

how to check if the hudson is busy or not?

How can check if the hudson is busy or not? Meaning i want to check if its currently executing any build or not. Currently am using following thing: if(lastBuild == lastCompletedBuild){ ...
6
votes
1answer
192 views

Hudson - capturing logs from slaves

I have MASTER and SLAVE configured (ssh-slave-plugin). I would like to display output of the slave executed script under job on master, as so far I get Building remotely on SubAgent Triggering ...
6
votes
2answers
3k views

Jenkins fails with github “git clone”

when i do build in Jenkins, it fails with this error. Any idea? ERROR: Error cloning remote repo 'origin' : Could not clone git@github.com:test/test.git ERROR: Cause: Error performing command: git ...
6
votes
3answers
362 views

Can I extend Jenkins with Jython/Python

Is it possible to write Jenkins plugins using Python (via Jython), and if so, where would I get started? I don't know Java (and don't have a real interest in learning it at the moment) so being able ...
6
votes
1answer
669 views

Why does a hudson “mvn clean install” build take 3-6x longer than the same on the command line?

We are seeing relatively long build times on our CI server (hudson) and they're starting to get in our way. I am aware hudson does more than invoke maven and I would happily grant it 10-20% more time ...
6
votes
2answers
384 views

Integrating SourceMonitor into a Jenkins CI-System

I would like to integrate SourceMonitor into my Jenkins CI-system. Since there is no SourceMonitor plugin how can i make the results of SourceMonitor visible on my Jenkins Server.
6
votes
2answers
9k views

Configure Hudson to only execute Build or Post Build actions if changes in SVN are detected

Is there a way to configure Hudson to only execute Build or Post Build actions if there are changes in SVN/CVS Thank you
5
votes
0answers
145 views

postbuild UIAutomation script not running in jenkins

I am trying to do End-to-End automation for an iOS project. My aim is to automate the continuous integration process with attaching UIAutomation scripts as post build action. So from the time when a ...
5
votes
0answers
74 views

Jenkins after restart runs spec on deleted branches

I use Jenkins with a Github repository, and after restart Jenkins runs spec on all branches, even on those deleted from the repo. How do I make jenkins run specs on only the actual repo branches?
5
votes
1answer
115 views

Is there a way to use Jenkins with Github Pull Requests?

I want Jenkins to automatically find and run the test suite for every branch that is part of an open pull request. Is this possible with some Jenkins plugin I have not found?
5
votes
1answer
116 views

hudson / jenkins - Showing content when clicking a result link

I have job that runs an executable which yields a JUnit report. This report is parsed by Hudson (the 'Publish JUnit test result report' option is checked), and each testcase is shown as a link. What I ...
5
votes
2answers
480 views

What is the most notable difference between Jenkins and Hudson from an user perpective?

It is around 10 months now that Jenkins split off from Hudson. When looking at the project homepages I am wondering what the differences between Hudson and Jenkins in the meantime really are. From ...
5
votes
4answers
455 views

How to do Cucumber Android integration testing?

I'm trying to set up continuous integration with an Android project and Cucumber. The idea is to write tests in Cucumber and run the tests on my Android build via Cuke4Duke and NativeDriver for ...
5
votes
3answers
2k views

How to stop Jenkins installed on Mac Snow Leopard?

I have installed Jenkins using .dmg file in MAC (10.6.8). Installed directories: Users/Shared/Jenkins - with all the plugins, war, jobs, usercontent, etc. Applications/Jenkins - which is ...
5
votes
3answers
821 views

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 ...
5
votes
1answer
1k views

How to get CTest results in Hudson / Jenkins

I'm using CTest (part of CMake) for my automated tests. How do I get CTest results in the Jenkins dashboard ? Or, phrased differently, how do I get CTest to output in JUnit-like XML ?
5
votes
2answers
186 views

What is the simplest way to find the current git branch name when in detached HEAD state

I can find the current git branch name by doing either of these: git branch | awk '/^\*/ { print $2 }' git describe --contains --all HEAD But when in a detached HEAD state, such as in the post ...
5
votes
3answers
788 views

Jenkins CI uses wrong svn revision for build

currently I am working with Jenkins CI Server and I want to trigger a job/build via svn post commit hook. So far it works as expected, but the build uses the previous svn revision. For example: I ...
5
votes
2answers
4k views

Archive the artifacts in hudson / jenkins

Hi i am new to the world of continuous integration. could someone please explain to me the idea of artifacts in the build process ? i have the workspace directory where i check out the code to, ...
5
votes
5answers
5k views

jenkins / hudson environment variables

i am running jenkins from user jenkins thats has $PATH set to something and when i go into jenkins web interface, in the System Properties window i see different $PATH. I have installed jenkins on ...
5
votes
1answer
2k views

Deploying .NET with Jenkins/Hudson

I've been using Jenkins/Hudson CI for deploying my .NET web site project. I've been using the MSbuild plugin to build my project, and then xcopy to copy it out to the server. I've noticed if I use ...
5
votes
1answer
2k views

How should I set up Jenkins CI to use https on Windows?

We've recently set up a Jenkins CI server on Windows, and in order to use Active Directory authentication I'd like to require https (SSL/TLS) for access. Given this setup, what is the recommended way ...

1 2 3 4 5 21