buildframework/helium/external/helium-antlib/logging/tests/build_stages_summary.txt.ftl
changeset 179 d8ac696cc51f
equal deleted inserted replaced
1:be27ed110b50 179:d8ac696cc51f
       
     1 <#--
       
     2 ============================================================================ 
       
     3 Name        : build_stages_summary.txt.ftl 
       
     4 Part of     : Helium 
       
     5 
       
     6 Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     7 All rights reserved.
       
     8 This component and the accompanying materials are made available
       
     9 under the terms of the License "Eclipse Public License v1.0"
       
    10 which accompanies this distribution, and is available
       
    11 at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
    12 
       
    13 Initial Contributors:
       
    14 Nokia Corporation - initial contribution.
       
    15 
       
    16 Contributors:
       
    17 
       
    18 Description:
       
    19 
       
    20 ============================================================================
       
    21 --> 
       
    22 
       
    23 *** BUILD STAGE SUMMARY ***
       
    24 
       
    25 <#assign count = 0>
       
    26 <#list statusReports as report>
       
    27 <#assign count = count + 1>
       
    28 ${count}) ${report["phaseName"]}
       
    29 ${""?left_pad(2)} Start Time : ${report["startTime"]}
       
    30 ${""?left_pad(2)} Duration   : ${report["duration"]}
       
    31 ${""?left_pad(2)} Status     : ${report["status"]}
       
    32 <#if  report["status"] == "FAILED">
       
    33 ${""?left_pad(2)} Reason     : ${report["reason"]}
       
    34 </#if>
       
    35 </#list>