jenkins_1.469_all.deb missing!

2012-06-10 Thread moki
Hi, I tried unsuccessfully upgrading of jenkins on our GNU/Linux Debian machine. It seems the package jenkins 1.469 is missing: Err http://pkg.jenkins-ci.org/debian/ binary/ jenkins 1.469 404 Not Found And in the web site, the link jenkins_1.469_all.deb at http://pkg.jenkins-ci.org/debian/ ha

Re: How do I generating unique snapshots with gradle and Jenkins?

2012-06-10 Thread Stephen Connolly
Ps I didn't say that I didn't say you could also use maven if you want a serious build system (in part because you might be foolish and make the mistake of using the "maven project" type in Jenkins and not do it right [freestyle + maven build step] but anyway) On Sunday, 10 June 2012, Arnaud Hérit

Re: Slow job configuration launch

2012-06-10 Thread Johannes Wienke
Am 10.06.2012 21:02 schrieb Sami Tikka: > I got Jenkins to speed up a lot by changing openjdk to sun jdk. We are already on sun jdk. There must be a special issue with the configuration page as other things show sufficient speed. Johannes signature.asc Description: OpenPGP digital signature

Re: Slow job configuration launch

2012-06-10 Thread Sami Tikka
I got Jenkins to speed up a lot by changing openjdk to sun jdk. -- Sami Johannes Wienke kirjoitti 5.6.2012 kello 12.41: > Hi, > > Am Freitag, 2. März 2012 06:12:16 UTC+1 schrieb tah: > Hello, > My Jenkins instance is generally fast, but launching any job > configuration page is ext

Re: Understanding Console Output

2012-06-10 Thread Sami Tikka
The part of the stack trace that mentions unix process leads me to think you might be running Jenkins on a unix computer. If that is the case, you cannot execute a windows batch script. If you really want to build on windows, you need to set up a slave on a windows computer and in the job confi

Re: How do I generating unique snapshots with gradle and Jenkins?

2012-06-10 Thread Arnaud Héritier
You can probably reuse maven ant tasks for such deployment from gradle if you want something safe/clean. Arnaud PS : I didn't say that you may also use directly Maven if you want a serious build system even if it was tempting ;) Le 10 juin 2012 à 16:07, Stephen Connolly a écrit : That misses o

Re: How do I generating unique snapshots with gradle and Jenkins?

2012-06-10 Thread Stephen Connolly
That misses out the deployment number which is required in the metadata. I suspect gradle only thinks it understands maven repos On Sunday, 10 June 2012, Grégory Boissinot wrote: > You can use the following snippet: > > import java.text.SimpleDateFormat; > import java.text.DateFormat; > > version

Re: How do I generating unique snapshots with gradle and Jenkins?

2012-06-10 Thread Grégory Boissinot
You can use the following snippet: import java.text.SimpleDateFormat; import java.text.DateFormat; version=1.0 Calendar calendar = Calendar.getInstance(); DateFormat dateFormat = new SimpleDateFormat("MMdd"); gradle.taskGraph.whenReady { String buildID = System.getenv()['BUILD_ID'] if (bu

Re: gradle build not executed

2012-06-10 Thread abunetta
Could you add --debug to the gradle execution and post the results here? - David On Wednesday, June 6, 2012 9:55:03 PM UTC+3, Ken Krebs wrote: > > I'm having difficulty getting my freestyle Jenkins job to execute my > Gradle build. After it checks out the code from SVN it simply > finishes : SU