Jenkins is an extensible continuous integration server written in Java. It is capable of running on Linux, OS X and Windows. The project was renamed from "Hudson" in December 2010 after a dispute with Oracle who claim to own the trademark for the name "Hudson".

learn more… | top users | synonyms

8
votes
0answers
547 views

Jenkins + Play 1.2.4 : problems with cobertura lock files / report

we have a Play 1.2.4 application and we got Jenkins (on Ubuntu) for the application. We're having problems with Cobertura. After running the tests (succesfully), we get every now and then the ...
7
votes
0answers
522 views

Why is my Hudson/Jenkins recreating my Emulator Snapshots in every build?

I use Jenkins to build one of my projects. The Android Emulator Plugin automatically starts an emulator with the following configuration: Configuration of the Emulator Plugin: . Every time the ...
5
votes
0answers
114 views

Xcode command line upload/download files to/from an iOS Device Application Sandbox

does someone of you know, how I can mange the file transfer of my App data like the Organizer from the command line? I tried to find a way with xcrun or Instruments, but currently without success. My ...
4
votes
0answers
209 views

Robotium Tests not running on Jenkins but local

i try to integrate my Robotium Tests on our Jenkins Server. I implemented an android Test Project that based on our app Project. Everything works like a charm when i run the Tests on my local Machine ...
3
votes
0answers
73 views

Does Jenkins supports XUnit.Net?

I am used to XUnit.net for all my unit testing needs in my C# projects. For my personal projects I was using TeamCity as my CI server and with the right plugin, the unit tests were correctly launched ...
3
votes
0answers
505 views

How to deploy the EAR application in Websphere Cluster environment using hudson or jenkins Websphere deploy plugin

My requirement is to deploy the EAR application in Websphere Cluster environment using jenkin's Websphere deploy plugin. so where to i need to specify the details like server or cell or node or ...
2
votes
0answers
67 views

How to limit Jenkins child processes?

I have clean installation of Jenkins CI on my UbuntuServer 12.10, no jobs, no nothing, just Jenkins. Installation is from aptitude. What thrills me is that Jenkins is doing nothing at the moment and ...
2
votes
0answers
243 views

How to debug a selenium request spec which fails when run in Jenkins build (but passes when run manually as a spec)

I have a request spec written in rspec, using capybara: scenario "request for a page with js driver", :js => true do visit "/foo" # redacted here, in my spec it's a legitimate URL end In my ...
2
votes
0answers
69 views

getting NuGet to work both with whole solution and individual projects included in it

I have a solution with a few projects in it. All but one are class library projects, used in several solutions, included as git submodules, and don't have a .sln file, just a .csproj and .cs sources. ...
2
votes
0answers
85 views

Using jenkins to build a MSBuild Windows mobile 6.0 project with an imported TLB

I'm trying to put a Windows Mobile 6.0 C# project on our continuos integration server (Jenkins). There's an error when trying to compile the project, which references a TLB: ResolveComReferences ...
2
votes
0answers
141 views

How to distinguish between “Ad Hoc” and “App Store” Code Signing Identities in xcconfig files?

I'm trying to set up a Unity iOS project to run automated builds through Jenkins. So far, I've got Jenkins triggering a Unity build, which generates an XCode project. Then, using xcodebuild with ...
2
votes
0answers
186 views

xcodebuild error scheme not configured for running

I'm trying to setup a jenkins environment for automated build. Everything works ok, when I'm in project development folder. However running same command from "jenkins" folder fails: xcodebuild ...
2
votes
0answers
82 views

Cannot claim builds in jenkins

On our Jenkins (1.492) I have the Claim Plugin installed. Jenkins is configured to use LDAP using matrix authorization. After installing the plugin and enabling the plugin in the configuration of ...
2
votes
0answers
435 views

jenkins not responding to github webhook`

I got Jenkins talking to Github, and manually I can initiate a build and it succeeds! This is a private Github repo. I can't get the webhook to work, so that when I check-in in my repo, Jenkins ...
2
votes
0answers
41 views

Jenkins Xcode builds use old changes

I'm using Jenkins to pull from a mercurial repository and then build with Xcode. The problem is the ipa file being generated does not include the latest changes from the repro. It looks like it's ...
2
votes
0answers
254 views

Build failure for Scala, Maven and Java integration

I am actually developing a plugin for Jenkins, and I want to integrate Scala, Java and Maven in my plugin. I developed part of my plugin in Java and I would like to develop other parts in Scala. The ...
2
votes
0answers
100 views

Executing Nunit from jenkins

I execute near about 600 test cases from jenkins..But at certain point of time it throws an Error Unhandled exception Win32Exception,Error creating window handle.,System.Windows.Forms, at ...
2
votes
0answers
157 views

How to ignore packages in emma code coverage for android?

I've got a project set up like this: MyLibrary (library code used by other projects) MyLibraryTest (unit tests for MyLibrary) MyService (the application, references MyLibrary in project.properties) ...
2
votes
0answers
166 views

Jenkins with mercurial: Set repository url as parameter

Is it possible to use Jenkins with Mercurial in a way that a job will have the mercurial repository URL as a parameter? This will allow us to use a single job that can clone and build different ...
2
votes
0answers
291 views

Jenkins + Active Directory Authentication - Slow Login

I have a Jenkins master running on Windows 2008 SP2 set up with Active Directory authentication. The authentication is working fine and normally there is no issue with Login. Occasionally however ...
2
votes
0answers
137 views

MSBuild throws 'name too long' on project if called from Jenkins but not CMD

If I run the following command manually everything compiles fine. cd D:\Jenkins\[redacted]\Api> C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe /property:Configuration=Release Api.sln ...
2
votes
0answers
170 views

Resource mange external nodes in Jenkins for tests

My problem is that I have code that need a rebooted node. I have many long running Jenkins test jobs that needs to be executed on rebooted nodes. My existing solution is to define multiple "proxy" ...
2
votes
0answers
237 views

Git Plugin parameter for branch and repository urls?

I'm trying to use the Folders Plugin from Cloudbees to set a "fork" and "branch" environment variable for a folder. That way, when developers create feature branches, they can copy the folder, update ...
2
votes
0answers
116 views

Fill in a ArrayList within a configuration jelly file for a Jenkins Plugin

I have a problem when trying to implement the configuration file of my plugin. I started my program with the already existing SideBar Plugin, but I encountered a problem when I added a List as a ...
2
votes
0answers
357 views

how to get jenkins maven surefire to produce incremental console output?

My jenkins maven surefire tests don't produce any console output while running the actual tests themselves, i.e. the console shows the output below, and then spins for the duration of the test. When ...
2
votes
0answers
308 views

Doxygen / AppleDoc and Jenkins with Objective-C: where should the Doxygen / AppleDoc output live?

Currently our team is using an SVN repository to manage our code on Server A, and changes to this repository trigger builds via Jenkins to be kicked off on Server B (so server B has a workspace that ...
2
votes
0answers
237 views

Where does the console output go in Jenkins for .NET applications?

I am running some unit tests using MSTest and some of them print output to the console via Console.Write(). The output is not showing up in the usual Jenkins job log. Where does the output show up ...
2
votes
0answers
224 views

Hudson - How to configure the number of Jobs in the View-level Build History?

I have a view in my Hudson instance configured with about 300 builds for a given software release. There is a "Build History" link on the left side of the screen, and when I click on it, it lists the ...
2
votes
0answers
260 views

jenkins plugin - how to access other descriptor

i'm wondering if it is possible to access an other descriptor from a jelly file (global.jelly)? The only way to fill data into a textbox for example is to use the DescriptorImpl, which is mounted in ...
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
0answers
856 views

Jenkins xUnit Plug-in issue

I installed Jenkins server (on windows 7), plus xUnit plug-in in order to use UnitTest++ for the C++ project I work on. I configure jobs scripts so that TestUnit++ produces reports in some directory ...
1
vote
0answers
9 views

Jenkins cli public key authentication: Where to put my public key in Jenkins?

I am trying to setup Jenkins using jenkins-cli. From the Jenkins Wiki, I know I am supposed to add my public key in Jenkins: Login from the web UI and go to http://yourserver.com/me/configure, ...
1
vote
0answers
16 views

Jenkins subversion “check out fresh copy” vs “wipe out workspace”

I'm having an error on a build jenkins build job that can be resolved by doing a workspace wipe out before build. As SCM we're using subversion with check-out strategy: always check out a fresh copy. ...
1
vote
0answers
21 views

jenkins svn mail to committer after post-commit and revert commit

i am trying to setup jenkins and svn for my project. jenkins and svn is running already. currently i have a post-commit hook which starts a build everytime a new commit comes in. my jenkins is secured ...
1
vote
0answers
18 views

mock objects in python are not working on Jenkins?

I have a method, which needs to be mocked dependend on params. e.g.: mock_obj.method('param1').get() returns 10 mock_obj.method('param2').get() returns '~/Programs' etc. I do that using ...
1
vote
0answers
15 views

Jenkins: Changing Build Description via Promotion Plugin

I would like to change the description of a build via the promotion plugin. The idea is when a build is sent to be tested, I want to mark the build as Keep Forever (easy to do), set an icon to mark ...
1
vote
0answers
22 views

Configuring Jenkins with Cloud TFS (Supports GIT)

We are trying to configure Cloud TFS (Project Created with Git Support) & Jenkins (Ubuntu Machine). When ever i try to enter the Repository URL it gives the following error. Failed to connect ...
1
vote
0answers
22 views

Jenkins build multi-configuration project with MTAF not working on Saucelabs

I configured Magento Test Automation Framework(MTAF) with jenkins and Saucelabs and everything is working well but When doing Build multi-configuration project I have selected two more browsers form ...
1
vote
0answers
47 views

Multiple Jenkins jobs on multiple platofrms

I am trying to build multiple Jenkins jobs, e.g. job1, job2 where jobs2 is downstream job1, each one needs to run on multiple platforms, e.g. Win, Mac, Unix I need job2 on Mac to start once job1 on ...
1
vote
0answers
47 views

Parameterizing a Jenkins job with the versions of multiple upstream jobs

I need to create a build pipeline which consists of multiple projects that depend on each other. Here is a simplified illustration: SVN A --> build A --\ | SVN B --> build B ...
1
vote
0answers
38 views

How to setup jenkins for automatic checkouts from SVN?

I am trying to configure a jenkins server for build processes. My directory structure is as follows /home/<user>/projects/MyProject /home/<user>/projects/MyProject/scripts ...
1
vote
0answers
23 views

Accessing ExecutedMojo data from Jenkins REST API

I can access most of a maven build's information through the Jenkins REST API, but I've not been able to find the ExecutedMojos, which I need for their timing information. I see that this information ...
1
vote
0answers
99 views

Jenkins CI LDAP setup: very slow Log in

I have the following setup: Apache Tomcat 7.0.32 Jenkins CI 1.511 I need to Secure Jenkins so I have chosen the LDAP authentication plug in (version 1.2) The set up of the LDAP seems to be ok ...
1
vote
0answers
127 views

Rake file with Jenkins (Cucumber, watir-webdriver)

I've started with watir and cucumber a while ago and have been trying to run my project with Jenkins. I have a watir Project (watir,cucumber) in C:\project_name. I have rake file in the project also ...
1
vote
0answers
56 views

Worklight iOS native build fails on Jenkins

I am trying to do a Jenkins build for a Worklight hybrid application. I am able to build the hybrid part of the application, but when I try to create the .ipa file the build fails. I am using the ...
1
vote
0answers
45 views

How not to transform notice into ErrorException in Symfony2

Symfony2 seems to encapsulate all notice/warning into ErrorExceptions. Which is a nice behavior during development but this cause some problem with unit testing. I launch unit tests with Jenkins, and ...
1
vote
0answers
41 views

Checkstyle in Jenkins - NoSuchMethodError

I am trying to get checkstyle to work in jenkins. In maven alone, everything runs smoothly, but when I run the checkstyle:checkstyle target in jenkins, the follwong error apperas: mojoSucceeded ...
1
vote
0answers
28 views

Jenkins 1.510 deletes all CVS branch checkout files

I am using Jenkins, 1.510. It working well with all CVS checkout from head. However if I use checkout from branch, it checks out all files successfully shows the message as successfully checked out. ...
1
vote
0answers
40 views

Deploying and starting a webdriver test program on a remote windows vm from jenkins server

I have a test program in Java for testing a web app using webdriver. It builds and runs in my local machine just fine. Now, I need to build it in jenkins, then deploy and run it on a VM running on ...
1
vote
0answers
173 views

Authentication error when setting up Jenkins to talk to git

I am trying to setup Jenkins on windows that would talk to a remote Android git repository. I However, keep getting the following error: Using strategy: Default Cloning the remote Git repository ...

1 2 3 4 5 25