It's not the same without you
Join the community to find out what other Atlassian users are discussing, debating and creating.
I have a build which failed with a compile error using ANT 1.9.3 with Bamboo 5.4 build 4206. However, Bamboo claims the build was successful. Why did Bamboo not detect the ANT failure even though the log clearly says BUILD FAILED? Could this be related to the fact that I build a jar, run unit tests, then build a jar and run unit tests?
Hi Marc,
Would be possible to provide your build.xml file so we can identify the steps you are taking to run your build, please?
Please, find below a sample (build.xml) to a project I have created:
<project name="HelloWorld" basedir="." default="main"> <property name="src.dir" value="src" /> <property name="build.dir" value="build" /> <property name="classes.dir" value="${build.dir}/classes" /> <property name="jar.dir" value="${build.dir}/jar" /> <property name="main-class" value="sample.HelloWorld" /> <property name="lib.dir" value="lib" /> <path id="classpath"> <fileset dir="${lib.dir}" includes="**/*.jar" /> </path> <path id="application" location="${jar.dir}/${ant.project.name}.jar" /> <target name="clean"> <delete dir="${build.dir}" /> </target> <target name="compile"> <mkdir dir="${classes.dir}" /> <javac srcdir="${src.dir}" destdir="${classes.dir}" classpathref="classpath" includeantruntime="false" /> </target> <target name="jar" depends="compile"> <mkdir dir="${jar.dir}" /> <jar destfile="${jar.dir}/${ant.project.name}.jar" basedir="${classes.dir}"> <manifest> <attribute name="Main-Class" value="${main-class}" /> </manifest> </jar> </target> <target name="run" depends="jar"> <java fork="true" classname="${main-class}"> <classpath> <path refid="classpath" /> <path location="${jar.dir}/${ant.project.name}.jar" /> </classpath> </java> </target> <target name="junit" depends="jar"> <junit printsummary="no"> <classpath> <path refid="classpath" /> <path refid="application" /> </classpath> <batchtest fork="yes"> <fileset dir="${src.dir}" includes="*Test.java" /> </batchtest> </junit> </target> <target name="clean-build" depends="clean,jar" /> <target name="main" depends="clean,run,junit" /> </project>
Kind regards,
Rafael
The process of compile, test, compile, test, etc was causing Bamboo to believe the build was successful. By changing the build to compile, compile, compile, test, test, test fixed the issue of Bamboo believing the build was sucessful.
Previous build file process:
Fixed build file process:
This community is celebrating its one-year anniversary and Atlassian co-founder Mike Cannon-Brookes has all the feels.
Read moreBamboo 5.9 will no longer be supported after June 12, 2017. What does this mean? As part of our End of Life policy, Atlassian supports major versions for two years after the first major iteratio...
Connect with like-minded Atlassian users at free events near you!
Find a groupConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no AUG chapters near you at the moment.
Start an AUGYou're one step closer to meeting fellow Atlassian users at your local meet up. Learn more about AUGs
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.