buildframework/helium/external/helium-antlib/logging/tests/stages_config.ant.xml
changeset 179 d8ac696cc51f
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     <dirname property="logging.test.project.dir" file="${ant.file.stages-config}" />
       
    31     
       
    32     <hlm:stagesummary id="stage.summary" template="${logging.test.project.dir}\build_stages_summary.txt.ftl" />
       
    33 
       
    34     <hlm:stage id="preparation" starttarget="hello-test" endtarget="hello-test"/>
       
    35     <hlm:stage id="compile" starttarget="compile" endtarget="compile"/>
       
    36     <hlm:stage id="post" starttarget="prep-ccm-get-input" endtarget="prep-ccm-get-input"/>
       
    37     
       
    38     <hlm:stagerecord id="record.default" defaultoutput="${build.log.dir}/${build.id}_main.ant.log" loglevel="info" append="false"/>
       
    39     
       
    40     <hlm:stagerecord id="record.prep"  stagerefid="preparation" output="${build.log.dir}/${build.id}_prep.ant.log" loglevel="info" append="false"/>
       
    41     
       
    42     <hlm:stagerecord id="record.compile"  stagerefid="compile" output="${build.log.dir}/${build.id}_compile.ant.log" loglevel="info" append="false"/>
       
    43     
       
    44     <hlm:stagerecord id="record.post"  stagerefid="post" output="${build.log.dir}/${build.id}_post.ant.log" loglevel="info" append="false"/>
       
    45     
       
    46 </project>