101 <target name="prep-drive" depends="build-number" /> |
101 <target name="prep-drive" depends="build-number" /> |
102 <target name="dragonfly-prep-drive" /> |
102 <target name="dragonfly-prep-drive" /> |
103 <target name="do-prep-work-area" /> |
103 <target name="do-prep-work-area" /> |
104 <target name="create-bom" /> |
104 <target name="create-bom" /> |
105 <target name="check-env-prep" /> |
105 <target name="check-env-prep" /> |
106 <target name="prep-copy"> |
106 <target name="prep-copy" /> |
107 <property name="qt.zip" value="qt-embedded-s60-commercial-src-4.5.0-garden.zip" /> |
|
108 <!-- Qt prerelease are accessible from the outside world too. --> |
|
109 <if> |
|
110 <not><available file="${build.drive}/${qt.zip}"/></not> |
|
111 <then> |
|
112 <get src="http://pepper.troll.no/s60prereleases/testpackages/garden05/${qt.zip}" dest="${build.drive}/${qt.zip}"/> |
|
113 </then> |
|
114 </if> |
|
115 <mkdir dir="${qt.dir}"/> |
|
116 <delete> |
|
117 <fileset dir="${qt.dir}"> |
|
118 <include name="**/bld.inf"/> |
|
119 <include name="**/*.mmp"/> |
|
120 </fileset> |
|
121 </delete> |
|
122 <unzip src="${build.drive}/${qt.zip}" dest="${qt.dir}/../"> |
|
123 <mapper> |
|
124 <regexpmapper from="^qt([^/]*)/(.*)$$" to="qt/\2"/> |
|
125 </mapper> |
|
126 </unzip> |
|
127 </target> |
|
128 |
|
129 |
|
130 |
107 |
131 <!-- Check that the XML data returned from Diamonds via the REST interface |
108 <!-- Check that the XML data returned from Diamonds via the REST interface |
132 is the same as what is sent. |
109 is the same as what is sent. |
133 |
110 |
134 Currently there are some differences between the formats so some edits to the |
111 Currently there are some differences between the formats so some edits to the |