Sorry to interrupt, but the main reason I find in receiving a mail upon build completion is when the building process is launched in an automated manner (cron or similar). But then, why not using a continuus integration tool like AntHill ? It does launch build (schedule or on request) and sends a mail (with a link to the log file) upon completion (failure or success). If you want it to build on your local copy (and not the one on your VCS), you can tell anthill to retrieve the source from a local directory (really local or mounted). I'm sure Anthill's competitors can also do the same. (Search anthill in this mail list)
Or I have missed something ? Benoit -----Original Message----- From: Jim Allers [mailto:[EMAIL PROTECTED] Sent: 04 March 2003 22:49 To: Ant Users List Subject: RE: Emailing Build results I really think you'd be better served by a custom logger but you can try this for fun... <parallel> <sequential> <ant ... Call buildfile.../> <property name="my.build.finished" value="isset" /> </sequential> <sequential> <waitfor> <isset property="my.build.finished" /> </waitfor> <mail ...email results... /> </sequential> <parallel> -----Original Message----- From: Alexei Betin [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 04, 2003 3:39 PM To: Ant Users List Subject: RE: Emailing Build results well, in fact I'd need rather something like: <parallel> <ant ...call buildfile... /> <sequential> <waitfor ...some var that indicates build is done... /> <mail ...email results... /> </sequential> </parallel> > -----Original Message----- > From: Alexei Betin > Sent: Tuesday, March 04, 2003 1:35 PM > To: Ant Users List > Subject: RE: Emailing Build results > > > Aha, I am getting closer... > > failing <ant> task does terminate the build, but > by using the structure like below I seem to be getting > what I want: > > <parallel> > <ant ...call buildfile... /> > <mail ...email results... /> > </parallel> > > Thanks for all help! > > ~Alexei > > > -----Original Message----- > > From: Chris Reeves [mailto:[EMAIL PROTECTED] > > Sent: Tuesday, March 04, 2003 1:26 PM > > To: Ant Users List > > Subject: RE: Emailing Build results > > > > > > Probably so. Like I said, it's been working for months, so > > I'm gonna let > > it be. > > > > However, I'd like to hear if you experiment with it. > > > > Thanks, > > Chris > > > > > -----Original Message----- > > > From: Alexei Betin [mailto:[EMAIL PROTECTED] > > > Sent: Tuesday, March 04, 2003 4:16 PM > > > To: Ant Users List > > > Subject: RE: Emailing Build results > > > > > > > > > I like this approach except for using <exec>, > > > I wonder if there is a way to do it using <ant> instead? > > > > > > Thanks, > > > ~Alexei > > > > > > > > > > -----Original Message----- > > > > From: Chris Reeves [mailto:[EMAIL PROTECTED] > > > > Sent: Tuesday, March 04, 2003 1:10 PM > > > > To: Ant Users List > > > > Subject: RE: Emailing Build results > > > > > > > > > > > > I use a slightly different approach to have the buld > results sent. > > > > > > > > First, I created a second, separate ant build script that > > wraps my > > > > build.xml file. > > > > > > > > This second script checks the project out of cvs, then > > executes the > > > > build.xml present at the root of the project. When the ant call > > > > completes, the log file is attached to a mail message. > > This occurs > > > > even if the wrapped build fails. > > > > > > > > I'm sure there's a cleaner way to do this, but it has run > > > for months > > > > with no problems. > > > > > > > > Additionally, it's great to see the "Failed" or > > "Succeeded" on the > > > > subject line, so I don't have to open each message and > > > scour the logs > > > > just to discover the build succeeded. > > > > > > > > Chris > > > > > > > > > > > > ... > > > > > > > > <snip> > > > > > > > > > > > > <!-- > > > ============================================================== > > > > ========== > > > > ======== --> > > > > <!-- Target: build_project --> > > > > <!-- > > > > ============================================================== > > > > ========== > > > > ======== --> > > > > > > > > <target name="build_project" depends="init, clean, > > > > cvs_checkout"> > > > > > > > > <echo message="Executing ant file > > > > ${project.root.dir}/${project.antfile}"/> > > > > > > > > <exec dir = "${project.root.dir}" > > > > executable = > "/usr/java/ant/bin/ant" > > > > output = > > > > "${log.dir}/nightly_build_results_${filename.suffix}.txt" > > > > resultproperty = "project.build.result" > > > > outputproperty = > "project.build.output"> > > > > <arg line = > "${project.anttarget}"/> > > > > </exec> > > > > > > > > <echo message="Done."/> > > > > > > > > </target> > > > > > > > > > > > > <!-- > > > > ============================================================== > > > > ========== > > > > ======== --> > > > > <!-- Target: send_notification --> > > > > <!-- > > > > ============================================================== > > > > ========== > > > > ======== --> > > > > > > > > <target name="send_notification" depends="init, > > > > build_project"> > > > > > > > > <condition property="build.result" > > > value="Failed!!!"> > > > > <equals arg1="1" > > > > arg2="${project.build.result}"/> > > > > </condition> > > > > > > > > <condition property="build.result" > > > > value="Succeeded!!!"> > > > > <equals arg1="0" > > > > arg2="${project.build.result}"/> > > > > </condition> > > > > > > > > <mail tolist = > "${to.address}" > > > > from = > > "${from.address}" > > > > subject = > "${build.result} > > > > ${project.longname} Nightly Build - ${build.time}" > > > > mailhost = > "${smtp.server}" > > > > messagefile = > > > > "${log.dir}/nightly_build_results_${filename.suffix}.txt"> > > > > </mail> > > > > > > > > </target> > > > > > > > > </snip> > > > > > > > > ... > > > > > > > > > -----Original Message----- > > > > > From: Alexei Betin [mailto:[EMAIL PROTECTED] > > > > > Sent: Tuesday, March 04, 2003 4:01 PM > > > > > To: Ant Users List > > > > > Subject: Emailing Build results > > > > > > > > > > > > > > > what are reasonable options for emailing nightly > Build results? > > > > > > > > > > MailLogger seems to have no way to attach the build log or use > > > > > properties in Subject, > > > > > > > > > > also I am already using NoBannerLogger - which leaves no place > > > > > for MailLogger... > > > > > > > > > > <mail> task cannot help me, because if I put it at the > > end of my > > > > > build script, and the build fails, it'll never get to > > execute it. > > > > > > > > > > Is there a way to ensure a task is always called at the end? > > > > > maybe using different build files with <ant> or <antcall>? > > > > > <parallel> would not help me here because it can only wrap > > > > > tasks and not targets... > > > > > > > > > > Finally, I understand I can write my own Logger, > > > > > but for a couple of reasons I don't want to - I would > > > rather prefer > > > > > to get the job done by some batch file, but I wonder if I > > > am missing > > > > > a nice pure-Ant solution > > > > > > > > > > Thanks, > > > > > ~Alexei > > > > > > > > > > > > > > > > > > > > --------------------------------------------------------------------- > > > > > To unsubscribe, e-mail: [EMAIL PROTECTED] For > > > > > additional commands, e-mail: [EMAIL PROTECTED] > > > > > > > > > > > > > > > > > > > > > > > > --------------------------------------------------------------------- > > > > To unsubscribe, e-mail: [EMAIL PROTECTED] For > > > > additional commands, e-mail: [EMAIL PROTECTED] > > > > > > > > > > > > > > > > > --------------------------------------------------------------------- > > > To unsubscribe, e-mail: [EMAIL PROTECTED] For > > > additional commands, e-mail: [EMAIL PROTECTED] > > > > > > > > > > > --------------------------------------------------------------------- > > To unsubscribe, e-mail: [EMAIL PROTECTED] > > For additional commands, e-mail: [EMAIL PROTECTED] > > > > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]