hudson

Config spec of the clearcase vi

柔情痞子 提交于 2019-12-24 07:25:48
问题 I would like to know if below my need is possible in clearcase : Say , I have 15 different views ( Dynamic or Snapshot ) created ( from different users/developers ), I want get the "config spec" using some kind of cleartool command (Without having to right click on the view and select the configspec from windows context menu). Finally I would like to store/track all the config spec's from all the developers and apply the continuous integration (Hudson) build on all those config spec's. Yes ,

Hudson dependencies

十年热恋 提交于 2019-12-24 05:40:10
问题 I have set up my hudson job A. Job A depends on job B and C. I have set them up with "Build other projects". This works well, although each job is in separate directory in my workspace (default structure). But I need job B and C in jobs A workspace (root folder). I have considered two approaches: Change the workspace for job A and push that variable to job via "Trigger parameterized build on other projects" and then use ant build script to copy them to that location, since I couldnt find an

Continuous Integration with Grails [closed]

…衆ロ難τιáo~ 提交于 2019-12-24 02:17:22
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed last year . What tool would you recommend for continuous integration in a Grails + Tomcat (+ Ubuntu) environment? Jenkins? Hudson? Something else? I'm not looking for anything complex... simple would do just fine. 回答1: I just configured a grails job in Jenkins (running on debian). I cannot really say something about other CI

PermGen Space issue in Jenkins

北战南征 提交于 2019-12-24 01:38:09
问题 I am building a maven project, since last 1.5 yrs build was working fine but now I am getting the PermGen space error. [ERROR] Internal error: java.lang.RuntimeException: org.jfrog.build.extractor.maven.BuildInfoRecorder.sessionEnded() listener has failed: java.io.IOException: Remote call on channel failed: PermGen space -> [Help 1] [ERROR] org.jfrog.build.extractor.maven.BuildInfoRecorder.sessionEnded() listener has failed: java.lang.OutOfMemoryError: PermGen space I have tried below options

Legacy Maven 2 job type Plugin with Maven 3.2.1 not working

ⅰ亾dé卋堺 提交于 2019-12-24 01:02:37
问题 I try to use Hudson (3.3.3) and Legacy Maven 2 job type Plugin (3.0.2) with Maven (3.2.1), but I get an error. Is there a way to use Maven 3.2.1? Job log: Found mavenVersion 3.2.1 from file jar:file:/C:/Users/dur/.hudson/tools/Maven_3.2.1/lib/maven-core-3.2.1.jar!/META-INF/maven/org.apache.maven/maven-core/pom.properties Parsing POMs [workspace] $ "C:\Program Files\Java\jdk1.7.0_25/bin/java" -cp C:\Users\dur\.hudson\plugins\maven-plugin\WEB-INF\lib\maven3-agent-3.0.2.jar;C:\Users\dur\.hudson

How to get a better performance from Hudson CI API?

人盡茶涼 提交于 2019-12-24 00:27:23
问题 I'm trying to write a little tool for myself that would integrate with Hudson build server. The current roadblock that I've hit is performance. I'd like to do a simple thing like have a list of all jobs and the times of last successful build. The hudson API provides this information, but I either have to query everything at depth=2 or query each job individually (there's 150 of them currently). Even with exclude either approach takes over half a minute. This is unacceptable for a UI that

How do I choose an artifact from Nexus in a Hudson / Jenkins job?

给你一囗甜甜゛ 提交于 2019-12-24 00:15:29
问题 I have a job in Hudson server A which builds an artifact and deploys it to Nexus. I have another job in a completely separate Hudson server B which needs to download the artifact and deploy it. This job is normally run manually, and the person running it needs to indicate which version of the artifact to deploy - they may not always want to deploy the latest version (e.g. to roll back to a previous known good version). Currently, I achieve this by using a parameterized build, and require the

Does anyone know where to get the XSD file describing the junitReport.xml file format expected by Hudson?

蓝咒 提交于 2019-12-23 23:15:01
问题 I need the XSD of junitReport.xml recognized by Hudson. Does anyone know where can it be found? Thanks. 回答1: I've create a junit.xsd for Ant's junit task. It was created by examining the relevant Java code in Ant 1.8.2 回答2: At this link, someone has already tried to analyse the JUnit code to check for any references for it's XML schema. But an XSD is no requirement to create XML and apparently, it doesn't use one. 来源: https://stackoverflow.com/questions/1385499/does-anyone-know-where-to-get

Being clever when copying artifacts with Jenkins and multi-configurations

你离开我真会死。 提交于 2019-12-23 17:43:29
问题 Suppose that I have a (fictional) set of projects: FOO and BAR. Both of these projects have some sort of multi-configuration option. FOO has a matrix on axis X which takes values in { x1, ..., xn } (so there are n builds of FOO). BAR has a matrix on axis Y which takes values in { y1, ..., ym } (so there are m builds of BAR). However, BAR needs to copy some artifacts from FOO. It turns out that Y is a strictly finer partition than n. For example, X might take the values { WINDOWS, LINUX } and

How can I delete Hudson's built artifacts?

拟墨画扇 提交于 2019-12-23 14:40:09
问题 We are using Hudson for our Continuous Integration server and it's great. We have 2 issues with it, which are mildly related. https://hudson.dev.java.net/issues/show_bug.cgi?id=2736 The build order in Hudson means that the downstream dependencies get built a lot more than they need to be. Hopefully this issue will be addressed soon. Since these things are getting built so frequently, the build history is massive. We really don't need 1000 build items in the history for some of the jobs. My