buildframework/helium/config/stages_config_default.ant.xml
changeset 179 d8ac696cc51f
child 587 85df38eb4012
child 593 4367a1b2db65
equal deleted inserted replaced
1:be27ed110b50 179:d8ac696cc51f
       
     1 <?xml version="1.0" encoding="UTF-8"?>
       
     2 <!-- 
       
     3 ============================================================================ 
       
     4 Name        : stages_config.xml 
       
     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="stages-config" xmlns:hlm="http://www.nokia.com/helium">
       
    24     <description>
       
    25     Definitions of helium stages. 
       
    26     </description>
       
    27     
       
    28     <taskdef resource="com/nokia/helium/logger/ant/antlib.xml" uri="http://www.nokia.com/helium" />
       
    29     
       
    30     <!-- Build Stage Summary configuration -->
       
    31     <!-- Comment out below line to skip displaying build stage summary at end of build process -->
       
    32     <hlm:stagesummary id="stage.summary" template="${helium.dir}\tools\common\templates\log\build_stages_summary.txt.ftl" />
       
    33     
       
    34      <!-- Stages configuration -->
       
    35     <hlm:stage id="preparation" starttarget="prep" endtarget="prep"/>
       
    36     <hlm:stage id="compilation" starttarget="compile-main" endtarget="compile-main"/>
       
    37     <hlm:stage id="romcreation" starttarget="build-roms" endtarget="build-roms"/>
       
    38     <hlm:stage id="test" starttarget="run-test" endtarget="run-test"/>
       
    39     <hlm:stage id="localisation" starttarget="localisation" endtarget="localisation"/>
       
    40     <hlm:stage id="postbuild" starttarget="publish" endtarget="publish"/>
       
    41     
       
    42     
       
    43     <!-- Stage record configuration -->
       
    44     <hlm:stagerecord id="stage.default" defaultoutput="${build.log}" loglevel="${ant.loglevel}" append="false"/>
       
    45        
       
    46     <hlm:stagerecord id="stage.preparation" stagerefid="preparation" output="${build.log.dir}/${build.id}_prep.ant.log" loglevel="info" append="true"/>
       
    47     
       
    48     <hlm:stagerecord id="stage.compilation" stagerefid="compilation" output="${build.log.dir}/${build.id}_compile.ant.log" loglevel="info" append="true"/>
       
    49     
       
    50     <hlm:stagerecord id="stage.romcreation" stagerefid="romcreation" output="${build.log.dir}/${build.id}_roms.ant.log" loglevel="info" append="true"/>
       
    51     
       
    52     <hlm:stagerecord id="stage.test" stagerefid="test" output="${build.log.dir}/${build.id}_test.ant.log" loglevel="info" append="true"/>
       
    53     
       
    54     <hlm:stagerecord id="stage.localisation" stagerefid="localisation" output="${build.log.dir}/${build.id}_localisation.ant.log" loglevel="info" append="true"/>
       
    55     
       
    56     <hlm:stagerecord id="stage.postbuild" stagerefid="postbuild" output="${build.log.dir}/${build.id}_postbuild.ant.log" loglevel="info" append="true"/>
       
    57     
       
    58     
       
    59 </project>