Tagged Questions
0
votes
0answers
4 views
jenkins unable to run “ /build-tools/17.0.0/aapt ”
does anyone know why is jenkins unable to run this file and gives a no such file or directory error ?
the file is there. it has the following permissions :
...
0
votes
0answers
6 views
jenkins deleting my build.config and R.java.d files
I am trying to create a build process for my android application. I am using ant and the targets I use are clean and debug.
now clean target deletes my generated java files "R.java.d" and ...
0
votes
0answers
18 views
Having error with ant script in hudson
I am new to hudson. write a simple Ant script as i start learning Ant, here is the script
<?xml version="1.0"?>
<project name="firstbuild" default="compile" >
<target ...
-1
votes
0answers
22 views
Checkout all changed files between two revisions in svn from ant [duplicate]
I want to build a patch program with NSIS, this patch contain binaries and configuration files. The binaries is ok, but I stuck with the configurations file, I need to collect all changed ...
2
votes
1answer
42 views
How to let the build fail, when any JUnit test fails?
We use latest Hudson version together with ANT scripts to build our projects. We have installed several extra plugins (like pmd, findbugs.. etc) to let a build get unstable, when a number of errors ...
0
votes
1answer
33 views
Adding version number from Jenkins to Apk?
I have a jenkins server that uses ANT to build my android project , what I need to do is to add the jenkins build number into my apk. So that I can do : getprop my.version on ADB .
One idea I had was ...
1
vote
1answer
33 views
How do I find out the duration of each task within a Hudson job?
I'm interested in finding out how long each step within a job is taking.
Example: one of my jobs performs csv checkout, run ant build, publish javadocs, archives artifacts, run unit tests, etc. Is ...
0
votes
1answer
96 views
java.io.IOException: Cannot run program “ant”
I'm running a Job in Hudson.
I build this job from a Hudson Master Server but the job is built in a Hudson Linux Node.
This is the result:
Started by user builder
Building remotely on Linux-Node
...
0
votes
0answers
25 views
Getting AbstractMethodError doing SVN operation using Ant script
Getting this below error when give build in hudson. i am using svnkit,svnclienadaptor,svnjavahl-1.6.0, svnkit-javahl for doing the svn operation Please help me to resolve this issue....
...
0
votes
1answer
103 views
Flyway with multiple databases connections
I'm trying to use flyway on a complex ERP with multiple databases, but I didn't find any hint to make it runs.
I'm using an ant script together with Hudson to build the whole system.
So, I created a ...
0
votes
0answers
235 views
Getting Hudson to execute JUnit Tests using Ant
I've been looking for a solution for this for a couple of days now, but I can't seem to find anything helpful. So I'm hoping anybody can give me a hint on this.
I want Hudson to run JUnit Tests using ...
0
votes
1answer
55 views
ANT not building WAR correctly when using Hudson?
I've got an Ant built script that works fine for building a WAR file from Eclipse, and using ant from the command line.
When I try and build the WAR from Hudson, the WAR is assembled, but certain ...
1
vote
0answers
41 views
How to add AntPerformanceListener to Hudson job?
I'm interested in being able to audit the time it takes for each ant task to run for jobs confirgured in Hudson v1.295. This page shows how its possible via command line.
ant -listener ...
0
votes
1answer
80 views
Runtime build configuration in hudson build
My project uses ANT build system. Currently, I am giving build via shell command for my project. Say when I give "ant dev deploy" from cmd prompt(see below image for a successful build via cmd prompt) ...
0
votes
2answers
140 views
Ant build works on one system and not another
We recently added FindBugs to our build and test process, but we've run into problems building when we are using the @SuppressWarning annotation.
More interestingly, the code will compile on our ...
1
vote
1answer
278 views
Add catalina-ant.jar in Jenkin's classpath
I want to add catalina-ant.jar in Jenkins' classpath to be able to use task definitions in my ant script like :
<taskdef name="start" classname="org.apache.catalina.ant.StartTask" />
I've ...
0
votes
1answer
164 views
Jenkins/Hudson JBoss plugin Shutdown did not work
I have a JBoss instance running and was started through the Jenkins startup command in JBoss plugin. After my tests have run I would like to shutdown the JBoss server. However at this stage Jenkins ...
0
votes
1answer
115 views
Jenkins/Hudson JBoss Plugin wait after Startup?
I am starting the JBoss server through the Jenkins JBoss plugin. After that I am executing some Selenium tests through Ant target. Some of the first Selenium tests fail due to timeout, I am suspecting ...
0
votes
0answers
25 views
Row response and request in ant- hudson
I need your help to display the row with response and request when a test fail in hudson-I am using ant and I publish JUnit test. I want to display the response in(HUDSON) : Latest Test Result ->Test ...
0
votes
1answer
62 views
Timestamp in log-hudson-ant [closed]
I have a problem to find how to put timestamp for log. I mean that to can be easy to search after time.
Thanks.
0
votes
4answers
588 views
Why aren't CodeSniffer excluding the --ignore specified folders?
I'm using Jenkins(Hudson) CI, and every night analysing the code using a number of tools for repporting, including Codesniffer for Checkstyle reports.
I wan't it to ignore the ./framework/* directory, ...
0
votes
2answers
48 views
How to know in repository if any file is checked out
I am trying to do our build process via Hudson, ant and we use SVN repository.
Before copying files to workspace in Hudson from SVN repository, I want to check, if anybody has not checked-in the ...
0
votes
0answers
29 views
Hudson compile output not matching Netbeans
I have a project that I compile with Hudson and Netbeans. However, the compile output is different in each one. More specifically, a bunch of warnings with a [jrc] tag show up in the Hudson compile ...
0
votes
2answers
248 views
“JUnitTask was not found” error (Hudson, Ant, JUnit)
I tried several ways to install ant and junit on the same server as hudson. I eventually downloaded the Ant source, installed the optional dependencies by using the included fetch.xml file, built the ...
1
vote
1answer
157 views
Using PaxExam with Bndtools
did someone ever tried to run PaxExam Junit tests with Bndtools and can give me some advices? I've tried it by myself, but without Maven it's a pain to download all the dependencies.
What I've done ...
1
vote
2answers
853 views
Android build.xml renderscript doesn't support includepath
I'm running my android project using ant in order to continuously run it using Hudson. I have created my build.xml on my mac and instead of importing the generated android build.xml, I copy/pasted it ...
0
votes
2answers
489 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 ...
3
votes
1answer
332 views
Increasing maxHeap arg for Findbugs in Jenkins
I am running Findbugs with Ant with the <findbugs> task. I am running the Ant build.xml from Jenkins.
My build is stuck on low heap size : Exception in thread "main" java.lang.OutOfMemoryError: ...
2
votes
1answer
907 views
Jenkins Execute failed: java.io.IOException ant build
I have set up Jenkins on debianserver and I am trying to create the first android build but ant is not able to get invoked
In jenkins configuration I have:
Name: Java6
...
0
votes
1answer
69 views
hudson severe collision detected
Iam working on server where hudson sits and i run it thru command prompt, when am working with old credentials(for logging into server not for hudson) i didn't exit hudson,and admin shutdown the ...
0
votes
1answer
260 views
Hudson autobuild + ANT Ftp settings
i've configured the hudson with ant to compile the project, which is working fine.
After the compile i want the script to upload the output directory to the remote ftp server.
This is the ant script ...
1
vote
1answer
119 views
Hudson delete shared directory
I'm using Hudson with Ant+ivy and many jobs which starts in parallel. My problem is that I use a cache folder for Ivy which is deleted and updated in the ant task of every job.
Of course, several ...
-1
votes
2answers
268 views
How to start and stop jboss from apache ant build.xml file
I have make
jar
war
EAR
using ant and Hudson and store all files at some temp folder
now I want to copy all war and ear files to jboss jboss/default/deploy folder using Apache ANT
How can I do ...
0
votes
2answers
149 views
how to start jboss ; how to exclude appxml ; how to make .har file using ant build.xml
How to start and stop Jboss from Command prompt in windows 7 32bit
when i try to run run.bat file from command prompt i get following error
D:\jboss-6.1.0.Final\bin>run.bat
Calling ...
0
votes
0answers
276 views
Convert all relative path to absolute path in ant build.xml for each project to run whole project from Hudson
I have query related to build automation for java project using apache ant and hudson
I have created build.xml file for each java project to build jar,war,ear file
to call all this build files make ...
0
votes
1answer
830 views
how to load all supporting jar in classpath in build.xml of apache ant
I have make build.xml file for each projects which create jar,war,ear files
to call this build.xml i have make one more master build.xml
Now I have configure this project in Hudson
The problem is ...
1
vote
1answer
341 views
using hudson and ant create datewise folder for each day where concern builds will be there
Iam using hudson and ant, i want to create a build structure like according to the current date, date folder has to be created and whenever the scheduled build was done , the concern war has to be ...
14
votes
2answers
1k views
Make Android jenkins build fail if tests fail
I have seen several post regarding making a build in Jenkins fail if the unit test execution fail (e.g. this one). It turns out that by default Jenkins reports builds with failing tests as unstable ...
1
vote
0answers
229 views
Hudson - Building servlets with Ant (Tomcat)
I want to build my webservice via Jenkins running on Tomcat and deploy the war file on the same Tomcat.
I have tested my build.xml in Eclipse Java EE version, it's compiling without errors. So I ...
1
vote
0answers
251 views
How to execute a specific test from testNg.xml with ant?
I have to run different type of tests which are defined in testNg.xml.
I am triggering my test from Hudson parameterized build, so based on this parameter(test type) I want to select a particular ...
4
votes
2answers
1k views
Run Jenkins ant build within special shell environment
Our internal build system uses a shell script to setup the environment for building projects. Then the actual build tools (ant or make) can reference environment variables for configuring various ...
1
vote
1answer
155 views
Ant javascript and socket numberformatexception
I have this ant target to validate if a port is being occupied. The script does in fact get the correct port of 8080, although some reason there's a new line.
<loadfile srcfile="hudson.xml" ...
0
votes
1answer
98 views
File Integrity with ant deployment and hudson ci
I just like to ask how I can check the file structure and their permission after ant deployment. I want to integrate it with Hudson CI. I am thinking of calling the ant deployment first then use rsync ...
2
votes
1answer
452 views
Build LaTeX PDF on Jenkins/Hudson
The team I work for manages a large collection of technical documentation which is written in LaTeX. Currently all the documentation we have is manually built by the editors and then checked into a ...
3
votes
1answer
1k views
Randomly test case fails - Forked JVM exits abnormally.
I have suite of Junit tests which passes every time I run locally. I have setup a job to run the suite, hudson uses ANT to invoke the tests.This suite was passing in the hudson machine for quite some ...
1
vote
1answer
130 views
Creating a standard test report file from custom test scripts/code
For an integration test setup, we have written some custom scripts and code to run tests based on the results of from the different external system and changing able configurations on out internal ...
1
vote
1answer
214 views
Pear installation from ant build
I am setting up CI for a PHP project. Since CI is on cloud I don't have physical access to system.
My ant target phpunit fails with message -
Cannot run program "phpunit": java.io.IOException: ...
0
votes
2answers
233 views
Get result of a build step in Hudson/Jenkins to re-use it in another one
My question may be silly but I've been trying several ways and I still can't do what I want, i.e.:
use the scp target of Ant to target a remote machine and execute
a script there
this script creates ...
0
votes
1answer
403 views
Jenkins can't connect to a database during a unit test after a build
I'm moving my ant build to a new Jenkins server. It can access SVN, compile and all that. Everything is great until it starts running unit tests. A few of the tests need access to a database to be ...
1
vote
1answer
1k views
Running an Ant exec task only for modified files
I'm creating a build script for a large PHP application. I'm using an Ant script, being run by Jenkins.
I want to include tools such as PHP_CodeSniffer and PHPMD (PHP Mess Detector) in the build ...
