217
|
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 |
<!-- enable coverity -->
|
|
31 |
<property name="enabled.coverity" value="true"/>
|
|
32 |
|
|
33 |
<!-- Run the full sequence of target for the minibuild. ,mini-build-prep,compile-main,zip-ee,mini-build-check-->
|
|
34 |
<!--<target name="do-mini-build" depends="mini-build-cleanup,
|
|
35 |
compile-main"/>-->
|
|
36 |
|
|
37 |
<property name="build.name" value="minibuild_ido_sbs_coverity" />
|
|
38 |
<property name="build.family" value="test_minibuild_ido_sbs_coverity" />
|
|
39 |
|
|
40 |
<target name="mini-build-check">
|
|
41 |
<!-- Check if prep has set some prop correctly... -->
|
|
42 |
<echo>'${arm.compiler.version}'</echo>
|
|
43 |
<au:assertMatches string="${arm.compiler.version}" pattern="RVCT2\.2 \[Build 686\]" casesensitive="false" multiline="true"/>
|
|
44 |
|
|
45 |
<!-- Check if compile-main step did what expected... -->
|
|
46 |
<au:assertFileExists file="${canonical.sysdef.file}"/>
|
|
47 |
<if>
|
|
48 |
<istrue value="${blocks.enabled}" />
|
|
49 |
<then>
|
|
50 |
<au:assertFileExists file="${blocks.config.dir}/minibuild_helloworldapi.blocks_component.xml" />
|
|
51 |
<au:assertFileExists file="${blocks.config.dir}/minibuild_helloworldcons.blocks_component.xml" />
|
|
52 |
</then>
|
|
53 |
</if>
|
|
54 |
</target>
|
|
55 |
|
|
56 |
|
|
57 |
<import file="../ido/build.xml"/>
|
|
58 |
<import file="build.sbsinput.ant.xml" />
|
|
59 |
</project>
|
|
60 |
|
|
61 |
|