vote up 0 vote down star

Is there a way to copy files to a (temp directory on a) stageing server only if the build and the unit tests succeed?

flag

71% accept rate

2 Answers

vote up 2 vote down check

Note that my answer is Maven2 oriented, so I am not completly sure that it will help you to solve your problem, but maybe be helpful for Java developers...

With Maven2, a build is failing if any unit test is failing (however, you have arguments to make the build successfull even with test failures).

You can then attach an Ant task that will copy some files into a directory. If you attach this Ant task in the package phase, it will be run after the compilation and the test phase, and then will be executed only if these steps are successfull.

Note that if you want to deploy your artifact (i.e. "copy" the WAR into a Tomcat server, for example), there are plugin for that (check Cargo plugin for example).

link|flag
romaintaz: Note he's using .net (hence 'NAnt' and MSBuild in the title). – silky Sep 22 at 8:42
Yes, I just saw that after posting my answer. However, I will keep my answer as it may be useful for other persons who uses Maven2... – romaintaz Sep 22 at 8:42
Yeah, no worries, it also appears to be the accepted one, which I find a little confusing, but you can't argue with the OP :P – silky Sep 22 at 8:50
vote up 0 vote down

For sure, just make it the last thing in your NAnt script.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.