buildframework/helium/tests/minibuilds/ido-sbs/build.xml
changeset 1 be27ed110b50
child 179 d8ac696cc51f
equal deleted inserted replaced
0:044383f39525 1:be27ed110b50
       
     1 <?xml version="1.0" encoding="UTF-8"?>
       
     2 <!-- 
       
     3 ============================================================================ 
       
     4 Name        : 
       
     5 Part of     : Helium 
       
     6 
       
     7 Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     8 All rights reserved.
       
     9 This component and the accompanying materials are made available
       
    10 under the terms of the License "Eclipse Public License v1.0"
       
    11 which accompanies this distribution, and is available
       
    12 at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
    13 
       
    14 Initial Contributors:
       
    15 Nokia Corporation - initial contribution.
       
    16 
       
    17 Contributors:
       
    18 
       
    19 Description:
       
    20 
       
    21 ============================================================================
       
    22 -->
       
    23 <project name="minibuild.ido-sbs" default="help" xmlns:au="org.apache.ant.antunit" xmlns:hlm="http://www.nokia.com/helium" basedir="..\ido">
       
    24     <property environment="env"/>
       
    25 	<!--property name="config.temp.build.dir" location="${ant.file.minibuild.ido-sbs}/../build"/ -->
       
    26 	
       
    27 	<!-- Configuring raptor build system -->
       
    28 	<property name="build.system" value="sbs"/>
       
    29 
       
    30     <!-- Run the full sequence of target for the minibuild. ,mini-build-prep,compile-main,zip-ee,mini-build-check-->
       
    31     <!--<target name="do-mini-build" depends="mini-build-cleanup,
       
    32     										compile-main"/>-->
       
    33 
       
    34 	<property name="build.name" value="minibuild_ido_sbs" />
       
    35     <property name="build.family" value="test_minibuild_ido_sbs" />
       
    36 		
       
    37     <target name="mini-build-check">
       
    38     	<!-- Check if prep has set some prop correctly... -->
       
    39         <echo>'${arm.compiler.version}'</echo>
       
    40         <au:assertMatches string="${arm.compiler.version}" pattern="RVCT2\.2 \[Build 616\]" casesensitive="false" multiline="true"/>
       
    41 
       
    42         <!-- Check if compile-main step did what expected... -->
       
    43         <au:assertFileExists file="${canonical.sysdef.file}"/>
       
    44         <if>
       
    45             <istrue value="${blocks.enabled}" />
       
    46             <then>
       
    47                 <au:assertFileExists file="${blocks.config.dir}/minibuild_helloworldapi.blocks_component.xml" />
       
    48                 <au:assertFileExists file="${blocks.config.dir}/minibuild_helloworldcons.blocks_component.xml" />
       
    49             </then>
       
    50         </if>
       
    51     </target>
       
    52 	
       
    53 	
       
    54 	<import file="../ido/build.xml"/>
       
    55 </project>
       
    56 
       
    57