buildframework/helium/tools/metadata/metadata.ant.xml
author kelvzhu
Mon, 25 Oct 2010 11:53:21 +0800
changeset 653 8ee61c1e0c5c
parent 628 7c4a911dc066
permissions -rw-r--r--
fix bug #3691: Fix for Bug 2413 create regression for ARM lib files.

<?xml version="1.0" encoding="UTF-8"?>
<!-- 
============================================================================ 
Name        : metadata.ant.xml 
Part of     : Helium 

Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
All rights reserved.
This component and the accompanying materials are made available
under the terms of the License "Eclipse Public License v1.0"
which accompanies this distribution, and is available
at the URL "http://www.eclipse.org/legal/epl-v10.html".

Initial Contributors:
Nokia Corporation - initial contribution.

Contributors:

Description:

============================================================================
-->
<!--* @package framework -->
<project name="metadata" xmlns:hlm="http://www.nokia.com/helium">
    <description>
    Metadata related ant macros and targets
    </description>

    <macrodef name="generateBuildStatus" uri="http://www.nokia.com/helium">
        <attribute name="output-dir" default="${build.signal.status.dir}"/>
        <attribute name="dbfile" default="${metadata.dbfile}" />
        <attribute name="file" />
        <sequential>
            <mkdir dir="@{output-dir}" />
            <var name="email.status.template" value="${build.status.email.template}" />
            <var name="generate.build.status.file.basename" unset="true" />
            <basename property="generate.build.status.file.basename" file="@{file}" />
            <fmpp sourceFile="${helium.dir}/tools/common/templates/log/build_status_orm.xml.ftl"
                         outputfile="@{output-dir}/${generate.build.status.file.basename}.status.xml">
                <freemarkerLinks expandProperties="yes">
                    macro: ${helium.dir}/tools/common/templates/macro
                </freemarkerLinks>
                <data expandProperties="yes">
                    dbPath: @{dbfile}
                    logpath: @{file}
                    ant: antProperties()
                </data>
            </fmpp>
            <fmpp sourceFile="${build.status.email.template}"
                         outputfile="@{output-dir}/${generate.build.status.file.basename}.status.html">
                <freemarkerLinks expandProperties="yes">
                    macro: ${helium.dir}/tools/common/templates/macro
                </freemarkerLinks>
                <data expandProperties="yes">
                    dbPath: @{dbfile}
                    logpath: @{file}
                    ant: antProperties()
                </data>
            </fmpp>
            <hlm:assertFileExists file="@{output-dir}/${generate.build.status.file.basename}.status.xml" />
            <hlm:assertFileExists file="@{output-dir}/${generate.build.status.file.basename}.status.html" />
        </sequential>
    </macrodef>
</project>