0
votes
0answers
19 views

Hudson Backup Plugin - Backup copy to remote system

I am using Hudson Backup Plugin, it is working fine but I have to put one copy of backup file in another Linux machine and one copy in local machine. But it not providing any pre-script or post-script ...
0
votes
1answer
23 views

jenkins plugin for checkingout a single modified file from svn

I have job in which developer changes a file and checkin back in svn. As soon as the developer checkin the file jenkins has to trigger a build and copy that changed file (not entire directory)from svn ...
0
votes
0answers
26 views

How to start different jobs as post-build action depending on some parameter in Jenkins?

Is it possible in Jenkins to start different jobs as post-build action depending on some parameter? For example my job is parameterized and user can choose what job should be started after current job ...
0
votes
0answers
72 views

How to pass a build number within the MultiJob plugin?

The MultiJob plugin is great and I want to use it for my build process, but there is one issue I have to solve before: There are three jobs A, B and C. SVN triggers job A and B (parallel execution) ...
0
votes
1answer
31 views

jenkins plugin for triggering build whenever any file changed in a given directory

I am looking for functionality where we have a directory with some files in it. Whenever any one makes a change in any of the files in the directory, jenkins shoukd trigger a build. Is there any ...
0
votes
1answer
135 views

what is the difference between Jenkins Built in LDAP and Jenkins LDAP Plugin

I am confused with Jenkins LDAP Plugin and the LDAP that already comes with jenkins without installing any plugin. Does someone know what is the difference between Jenkins Built in LDAP and Jenkins ...
0
votes
1answer
103 views

String.format not a function

I'm using HTML publisher in hope to have a html page with some javascript codes running on hudson. The HTML code is like this: <html> <head> <!--Load the AJAX ...
0
votes
0answers
34 views

how to pass parallel job's parameters to the join job?

i want do some work at the join job like sending mail, but i don't know how to get the parallel job's parameters. Take this as a example. https://wiki.jenkins-ci.org/display/JENKINS/Join+Plugin in ...
0
votes
2answers
48 views

How to manage shared resources between jobs in Jenkins/Hudson?

We have several jobs that run our application on different DB schema. Now each job uses its own DB schema. It's now very convenient. If the same job is started several times then these builds will be ...
0
votes
0answers
25 views

Changing the Build button in jenkins

There are some parameterized jobs which are used for deployment purpose ( Deployment from dev to test or test to prod). While running these jobs after selecting the parameters there is a build button. ...
1
vote
2answers
162 views

Jenkins Dynamic parameters based on previously selected parameter value

Here i am basically looking for a dependency parameter. Let us say i have two drop downs in the build parameter section. Based on the value selected from the 1st dropdown the possible default ...
1
vote
1answer
140 views

Jenkins/Build workflow: Provide result of one parallel executed job to multiple jobs

Try to implement following workflow in Jenkins: A trigger starts the parallel jobs A, B, C and D. As soon as A, B and C finish the job X should start and the same for job Y, it should start after C ...
1
vote
1answer
183 views

How to call batch/groovy script located in jenkins slave from “Execute system Groovy script”?

Problem: I have a groovy script using which I get list of SVN change set. I execute this on Execute system Groovy script, because I has access to Hudson objects that helps me getting change set. ...
0
votes
1answer
45 views

How to stop a downstream job from being run if it is waiting for upstream job to finish in Jenkins?

I have 2 projects :- 1. Project A 2. Project B Project A is the upstream project and Project B is the downstream project. Project B waits if Project A is already building. Project A triggers Project ...
1
vote
1answer
225 views

I can't find “Restrict where this project can be run” in the configure page

I use Jenkins,I can't find "Restrict where this project can be run" in the configure page,should I add some plugins? which one?
0
votes
3answers
313 views

start sonar server in jenkins

How can i start sonar in jenkins. i have sonar 3.1.1 in my system. I don't have a deep knowledge in jenkins. i started junkins and added the sonar-junkins plugin. After that in Manage jenkins -> ...
0
votes
0answers
30 views

Emails for concurrent jenkins builds without waiting

I am using Jenkins 1.495. The problem is that when concurrent builds are enabled emails will not be sent until all the builds finish. I have followed the issue and it stems from the fact that all ...
0
votes
1answer
45 views

getAllItems() returns an empty List in Jenkins

I need to get all the MavenModuleSet objects in Jenkins and my code is: List<MavenModuleSet> list = Jenkins.getInstance().getAllItems(MavenModuleSet.class); When I run it (in a Jenkins ...
0
votes
1answer
218 views

Jenkins Plugin: create a new job programmatically

How to create a new Jenkins job within a plugin? I have a Jenkins plugin that listens to a message queue and, when a message arrives, fires a new event to create a new job (or start a run). I'm ...
0
votes
0answers
68 views

Can Jenkins read .ini files?

I’m using Jenkins to automate the build process and looking for a way to read .ini files within Jenkins Is there a way to do that ? I couldn’t find any related plug-in
0
votes
0answers
159 views

Fetching from orign failing

I searched for the below error ,especially "ERROR: Problem fetching from origin / origin - could be unavailable. Continuing anyway",I couldnt get anything substantial,second error related to ...
1
vote
1answer
262 views

stderr: fatal: Couldn't find remote ref $GERRIT_REFSPEC

Before anyone guns me down..I have looked at all the messages that has this error but they seem to manifest from a different problem,I couldn't get any substantial information. Following are the ...
1
vote
2answers
427 views

The system cannot find the specified drive in Jenkins

I want to copy some files from a network shared drive (mounted at my local machine as drive Z). I have written a Batch file to copy the contents of Z drive into my local drive. This batch file runs ...
0
votes
2answers
522 views

Jenkins pass or fail build on external executable

As part of my build process, I have an EXE that I wrote that pushes database changes to the staging DB. This process encounters errors sometimes, and if so, I would like the build to fail. How can I ...
3
votes
3answers
672 views

Jenkins/Hudson - How to run multiple jobs in parallel more than 1 level deep?

I'm trying to get the following workflow running in Jenkins, in parallel. So for example, both A and B running at the same time. As soon as A finishes run A2 and A3 at the same time, etc... It seems ...
0
votes
1answer
71 views

Jenkins / Hudson automatically permute parameter values of parameterized builds

I have a parameterized build that has some options as to how to build the project. For example: color: red, green or blue package: yes, no Since this list is likely to grow and I would like to be ...
0
votes
0answers
27 views

How much time until Jenkins decides to add another node?

We are running Jenkins with the Amazon EC2 Plugin. When there are no slaves running, and you start a build, it will start a slave. However, if you have multiple builds for a slave fitting a certain ...
3
votes
1answer
808 views

Jenkins wall display 404

I have the Jenkins Wall display plugin enabled but when I click the link I get a 404. The icon itself is also not found. The link to view the wall display is like this: ...
1
vote
2answers
369 views

Jenkins Parallel Trigger and Wait

I have 4 jobs which needs to be executed in the following sequence JOB A |------> JOB B |------> JOB C |------> JOB D In the above A should trigger B & C parallely ...
0
votes
1answer
74 views

Gradle Task Sudden Termination

I will briefly explain the issue: I am executing a gradle task through Hudson. The gradle task executes some groovy code. If I cancel the Hudson job, executing the gradle task, then the gradle task ...
1
vote
2answers
276 views

Disable/enable Jenkins plugin per job/node

Is there a way to disable/enable plugin per job or slave node? I'm looking for a way to do that because jenkins admin in my company has concerns about security issues come with groovy system plugin ...
4
votes
1answer
229 views

Gerrit trigger install for Jenkins

I'm completely stuck with Gerrit Trigger install. I installed Jenkins ver. 1.482 with the Gerrit Trigger (v2.6.0) plugin. I'm not able to configure it. I installed a test gerrit server (v2.4.2). I ...
2
votes
0answers
29 views

Installing Jenkins plugins via API? [duplicate]

Possible Duplicate: How to install plugins in jenkins, with the help of jenkins remote access API? Is there a Jenkins API call which enables remote plugin installation? The documentation ...
1
vote
1answer
286 views

Jenkins Mac Slave Error

I have a Jenkins Server (Linux) with connection with Bitbucket. For iOS projects, I needed to create a connection to a Mac OS slave, but in the slave, I can't connect to the Bitbucket repo and make ...
0
votes
1answer
123 views

batch tasks plugin setting permissions on jenkins

We're using the batch task plugin(here) on our jenkins server i would like to restrict access/set permissions for certain tasks for individual users For example: User A can see tasks=> Push to ...
4
votes
2answers
595 views

Force Jenkins Subversion plugin to use HEAD revision

I was using Hudson for doing my project builds and now planning to migrate to Jenkins. The build server time is not in sync with the developer machines, and hence svn update does not work correctly. ...
3
votes
2answers
395 views

Jenkins/Hudson SVN Issue

I have a (strange) issue on my Jenkins installation which basically leads to SVN updates failing on an alternate basis. The stack trace shows two issues: hudson.util.IOException2: revision check ...
0
votes
1answer
710 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 ...
1
vote
1answer
378 views

Handshaking not happening between master and slave in jenkins

How to solve this error? Error occurred since I make master ip to public and assign DNS. Jul 27, 2012 12:44:17 PM hudson.remoting.jnlp.Main$CuiListener <init> INFO: Hudson agent is running in ...
0
votes
1answer
491 views

Pre send script in groovy for jenkins

i have two dependent jobs. i need help for groovy script in jenkins, for writing pre send script for email-ext plugin. i want to check whether buid reason is upstream cause, then set cancel ...
0
votes
1answer
145 views

Email-ext Pre script usage

How can I write a prescript to check whether an email is going to be triggered because of an upstream project cause (commit-job A). If it does trigger, I want to cancel the email triggering in job ...
1
vote
1answer
551 views

Build status jenkins

How can i access jenkins build status at runtime without email-ext plugin? i want to access build_status using environment variable of jenkins. Or Any other way to access build status variable of ...
0
votes
2answers
460 views

To get build status through environment variable

I am using jenkins for continous integration. For my build purpose, i triggering email using Ant task. I am not able to find an environment variable to pass ant for sending email build ...
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
176 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 ...
0
votes
1answer
160 views

How artifacts, fingerprinting and email notification related for interdependent jobs?

I am having two interdependent jobs, so my purpose is to send email notification to commiter of job-A after the completion of job-B. For sending the notification i got a reply like i need to have ...
3
votes
1answer
358 views

Jenkins Build error java.lang.ClassNotFoundException: hudson.remoting.Launcher

I am trying to integrate jenkins with svn. I have configured maven_home, java_home (java 1.5 update 22). I am using jenkins version 1.459 . One of my colleague successfully configured jenkins with the ...
1
vote
1answer
164 views

How to send email notification on the basis of different job

I have job A which trigger build on the basis of commit, after completion of job A, job B will get triggered as downstream job. IN my case both job A and B send email notification. How can i ...
3
votes
1answer
1k views

Jenkins/Hudson Upload to Testflight

I have a jenkins job using xcode to build my ipa file. That is all working great. Right now I just have the Marketing version set to ${BUILD_ID} and the technical version set to ${BUILD_NUMBER}. I ...
2
votes
1answer
667 views

How to run sonar analysis even if build failed on Jenkins

I have a jenkins job to build my project run tests and then run sonar with sonar jenkins-plugin. but when tests failed sonar analysis skipped.

1 2