equal
deleted
inserted
replaced
80 |
80 |
81 |
81 |
82 <h2>Target sf-unpack-rnd</h2> |
82 <h2>Target sf-unpack-rnd</h2> |
83 |
83 |
84 <p><b>Location</b></p> |
84 <p><b>Location</b></p> |
85 <p> <tt class="docutils literal"><a href="/D:/maintools/sf-config/common/build.xml#L484">D:\maintools\sf-config\common\build.xml:484:</a></tt> |
85 <p> <tt class="docutils literal"><a href="/d:/maintools/sf-config/common/build.xml#L498">d:\maintools\sf-config\common\build.xml:498:</a></tt> |
86 </p> |
86 </p> |
87 |
87 |
88 <p><b>Conditional execution</b></p> |
88 <p><b>Conditional execution</b></p> |
89 <p>No conditions on target execution.</p> |
89 <p>No conditions on target execution.</p> |
90 <hr/> |
90 <hr/> |
91 |
91 |
92 <h3>Description</h3> |
92 <h3>Description</h3> |
93 <p> |
93 <p> |
94 <p>unpack rnd zips if available</p></p> |
94 <p>Unpack the rnd zips ready to be used in the build</p></p> |
95 <p/> |
95 <p/> |
96 <hr/> |
96 <hr/> |
97 |
97 |
98 |
98 |
99 <h3>Target external Dependency</h3> |
99 <h3>Target external Dependency</h3> |
152 |
152 |
153 <h3>Source code</h3> |
153 <h3>Source code</h3> |
154 <pre> |
154 <pre> |
155 <target name="sf-unpack-rnd"> |
155 <target name="sf-unpack-rnd"> |
156 <echo message="Unpacking any available RnD binaries"/> |
156 <echo message="Unpacking any available RnD binaries"/> |
157 <exec executable="7za" dir="${build.drive}" output="${build.log.dir}/unzip_${build.id}_binaries_rnd.log"> |
157 <for param="rndZip"> |
158 <arg value="x"/> |
158 <fileset dir="${build.drive}/output/zips/"> |
159 <arg value="-y"/> <!-- Need to unpack in overwrite mode, due to TEF --> |
159 <include name="binaries_*.zip"/> <!-- Internal rnd bins --> |
160 <arg value="${build.drive}/output/zips/bin*.zip"/> |
160 <include name="release/bin_*.zip"/> <!-- Releaseable rnd bins --> |
161 </exec> |
161 </fileset> |
|
162 <sequential> |
|
163 <exec executable="7za" dir="${build.drive}" output="${build.log.dir}/unzip_${build.id}_binaries_rnd.log" append="true"> |
|
164 <arg value="x"/> |
|
165 <arg value="-y"/> <!-- Need to unpack in overwrite mode, due to TEF --> |
|
166 <arg value="-i!epoc32\*"/> <!-- Only unzip items into the epoc32 tree --> |
|
167 <arg value="@{rndZip}"/> |
|
168 </exec> |
|
169 </sequential> |
|
170 </for> |
162 </target> |
171 </target> |
163 </pre> |
172 </pre> |
164 |
173 |
165 |
174 |
166 <hr/> |
175 <hr/> |