Skip to content
Snippets Groups Projects
Commit 2d2d1538 authored by ndai's avatar ndai
Browse files

Added debug code

parent 9ac3a084
No related branches found
No related tags found
No related merge requests found
......@@ -6,12 +6,14 @@
<property name="buildTarget" value="all" />
<property name="removeBuildDir" value="true" />
<antcall target="startBuild">
<param name="ftpDir" value="${ftpRemoteDirectory}"/>
</antcall>
</target>
<target name="Repeat">
<property name="buildTarget" value="all" />
<antcall target="startBuild">
<param name="ftpDir" value="${ftpRemoteDirectory}"/>
</antcall>
</target>
......@@ -19,23 +21,31 @@
<delete dir="${build.home}/test-${build.component}-${buildType}" failonerror="false" />
<property name="buildTarget" value="test" />
<antcall target="startBuild">
<param name="ftpDir" value="${ftpRemoteDirectory}"/>
</antcall>
</target>
<target name="Publish">
<property name="buildTarget" value="justPublish" />
<antcall target="startBuild">
<param name="ftpDir" value="${ftpRemoteDirectory}"/>
</antcall>
</target>
<target name="Push">
<property name="buildTarget" value="justPush" />
<antcall target="startBuild">
<param name="ftpDir" value="${ftpRemoteDirectory}"/>
</antcall>
</target>
<target name="startBuild" depends="clean">
<antcall target="clean" />
<echo message="Component is: ${build.component}" />
<echo message="Build type is: ${buildType}" />
<echo message="Branch : ${mapVersionTag}" />
<echo message="Trial : ${build.trial}" />
<echo message="ftpRemoteDirectory : ${ftpDir}" />
<ant antfile="checkout.xml" target="all" dir="." inheritall="false">
<property name="codir" value="/home/build-home/build-node/checkout/${build.component}-${buildType}" />
......@@ -58,7 +68,7 @@
<property name="ftpUser" value="${ftpUser}" />
<property name="ftpPassword" value="${ftpPassword}" />
<property name="ftpServer" value="${ftpServer}" />
<property name="ftpRemoteDirectory" value="${ftpRemoteDirectory}" />
<property name="ftpRemoteDirectory" value="${ftpDir}" />
</ant>
</target>
......@@ -79,7 +89,7 @@
<property name="build.component" value="docs" />
<property name="buildTarget" value="buildDoc" />
<antcall target="Build">
<param name="ftpRemoteDirectory" value="${ftpDocsRemoteDirectory}"/>
<param name="ftpDir" value="${ftpDocsRemoteDirectory}"/>
</antcall>
</target>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment