-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.xml
290 lines (258 loc) · 11.2 KB
/
build.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
<project name="streamsx.inetserver" default="all" basedir=".">
<description>Build file for streamsx.inet project, built the toolkits and samples.</description>
<!-- set global properties for this build -->
<property environment="env" />
<property name="streams.install" value="${env.STREAMS_INSTALL}" />
<property name="toolkit.string" value="com.ibm.streamsx.inetserver"/>
<property name="toolkit.dir" location="${toolkit.string}"/> <!-- must be absolute because is used in called test scripts -->
<property name="doc.string" value="doc"/>
<property name="doc.dir" value="${doc.string}/spldoc"/>
<property name="samples.dir" value="samples"/>
<property name="samples.doc.dir" value="samples/${doc.string}/spldoc"/>
<property name="test.dir" value="tests"/>
<property name="junit.test.dir" value="${test.dir}/junit"/>
<property name="release.dir" value="release" />
<property name="release.info.file" value="${toolkit.string}/build.info"/>
<property name="tktitle" value="IBMStreams ${ant.project.name} Toolkit" />
<property name="tkauthor" value="IBMStreams Open Source Community at GitHub - https://github.com/IBMStreams/${ant.project.name}" />
<property name="spl-md" value="${env.STREAMS_INSTALL}/bin/spl-make-doc" />
<property name="spl-st" value="${env.STREAMS_INSTALL}/bin/streamtool" />
<!-- Create the time stamp -->
<tstamp/>
<!-- Targets -->
<target name="all" depends="toolkit, spldoc"
description="Main target: Build the toolkit code, build the samples index and generate the spl documentation - incremental build"
/>
<target name="clean" depends="spldoc-clean,samples-clean,releaseinfo-clean"
description="Main target: clean up toolkit code, samples code, all spldocs and downloaded libs">
<ant dir="${toolkit.dir}" target="clean" />
</target>
<target name="clean-all" depends="clean,test-clean"
description="Main target: clean up toolkit code, samples code, all spldocs and downloaded libs and test artifacts">
<ant dir="${toolkit.dir}" target="clean" />
</target>
<target name="toolkit" depends="get_name"
description="Main target: Build any code and index the toolkit - incremental build." >
<ant dir="${toolkit.dir}" target="toolkit"/>
</target>
<target name="toolkit-clean" depends="samples-clean"
description="Main target: Clean all generated toolkit files and cleans samples">
<ant dir="${toolkit.dir}" target="toolkit-clean" />
</target>
<target name="get_name">
<xmlproperty file="${toolkit.string}/info.xml" prefix="tkinfo" keepRoot="no"/>
<echo message="Toolkit Name: ${tkinfo.identity.name}"/>
<echo message="Toolkit Version: ${tkinfo.identity.version}"/>
</target>
<target name="spldoc" depends="toolkit"
description="Main target: Create SPLDOC.">
<echo message="Tookit spldoc to: ${doc.dir}"/>
<exec executable="${spl-md}" failonerror="true">
<arg value="--include-composite-operator-diagram" />
<arg value="--author" />
<arg value="${tkauthor}" />
<arg value="--doc-title" />
<arg value="${tktitle}" />
<arg value="--directory" />
<arg value="${toolkit.string}" />
<arg value="--warn-no-comments"/>
<arg value="--copy-image-files" />
<arg value="--output-directory" />
<arg value="${doc.dir}" />
</exec>
</target>
<target name="spldoc-clean"
description="Clean the toolkit documentation">
<delete dir="${doc.dir}"/>
<delete dir="${samples.doc.dir}"/>
</target>
<!-- Targets on samples -->
<target name="samples" depends="toolkit"
description="Build all samples">
<subant genericantfile="${basedir}/build.xml">
<target name="build-sample-target"/>
<dirset dir="${samples.dir}" includes="*" excludes="${doc.string}"/>
</subant>
</target>
<target name="samples-clean"
description="Clean up samples index and samples code">
<subant genericantfile="${basedir}/build.xml">
<target name="clean-sample-target"/>
<dirset dir="${samples.dir}" includes="*" excludes="${doc.string}"/>
</subant>
</target>
<target name="spldoc-samples" depends="samples"
description="Generate the doc for all samples">
<echo message="All samples spldoc to: ${samples.doc.dir}"/>
<exec executable="bash" outputproperty="samples.list" failonerror="true">
<arg value="-c"/>
<arg value="for x in ${samples.dir}/*/info.xml; do echo -n ${x%/*}; echo -n : ; done"/>
</exec>
<echo message="All samples to SPLDOC: ${samples.list}"/>
<exec executable="${spl-md}" failonerror="true">
<arg value="--include-composite-operator-diagram"/>
<arg value="--author"/>
<arg value="${tkauthor}"/>
<arg value="--doc-title"/>
<arg value="${tktitle}"/>
<arg value="--toolkit-path"/>
<arg value="${samples.list}"/>
<arg value="--warn-no-comments"/>
<arg value="--check-tags"/>
<arg value="--include-source"/>
<arg value="--output-directory"/>
<arg value="${samples.doc.dir}"/>
</exec>
</target>
<target name="build-sample-target">
<echo message="Sample to build: ${basedir}"/>
<exec executable="make" failonerror="true" dir="${basedir}"/>
</target>
<target name="clean-sample-target">
<echo message="Sample to clean: ${basedir}"/>
<exec executable="make" failonerror="true" dir="${basedir}">
<arg value="clean" />
</exec>
<delete dir="output"/>
</target>
<!-- Test targets -->
<target name="test" depends="test-junit"
description="Main target: Execute the toolkit quick test. Includes junit tests.">
<echo message="Start quick test"/>
<exec executable="make" dir="${test.dir}/frameworktests" failonerror="true">
<arg value="test"/>
</exec>
</target>
<target name="test-full" depends="test-junit"
description="Main target: Execute all toolkit tests. Includes junit tests.">
<echo message="Start full test"/>
<exec executable="make" dir="${test.dir}/frameworktests" failonerror="true">
<arg value="test-full"/>
</exec>
</target>
<target name="test-junit" depends="toolkit"
description="Execute the junit tests">
<echo message="Execute the junit tests"/>
<ant dir="${junit.test.dir}" target="test"/>
</target>
<target name="test-clean"
description="Clean up all generated test artifacts">
<ant dir="${junit.test.dir}" target="clean-all"/>
<exec executable="make" dir="${test.dir}/frameworktests" failonerror="true">
<arg value="clean-all"/>
</exec>
<delete dir="${test.dir}/frameworktests/workdir"/>
<delete dir="${test.dir}/frameworktests/scripts"/>
</target>
<!-- Targets to build releases -->
<target name="release" depends="clean"
description="Make a toolkit release archive - purge workspace and build toolkit from scratch">
<antcall target="release-target" inheritAll="true"/>
</target>
<target name="release-target" depends="releaseinfo,get_name">
<!-- prepare toolkit code and docs -->
<antcall target="spldoc"/>
<antcall target="samples"/> <!-- check if samples are compile clean -->
<antcall target="samples-clean"/> <!-- remove samples build artifacts -->
<echo message="Make releasefile Toolkit ${tkinfo.identity.name} Version: ${tkinfo.identity.version}"/>
<!-- Extract the git commit hash -->
<exec executable="git" outputproperty="commithash.short">
<arg value="rev-parse"/>
<arg value="--short"/>
<arg value="HEAD"/>
</exec>
<!-- create release bundle -->
<mkdir dir="${release.dir}" />
<property name="releasefilename" value="${release.dir}/streamsx.inetserver-${tkinfo.identity.version}-${commithash.short}-${DSTAMP}-${TSTAMP}.tgz"/>
<tar compression="gzip" longfile="gnu"
destfile="${releasefilename}"
basedir="${basedir}"
includes="${toolkit.string}/** samples/** ${doc.string}/** README.md LICENSE"
excludes="**/.toolkitList **/.gitignore **/.gitkeep ${toolkit.string}/.project ${toolkit.string}/.settings/ ${toolkit.string}/.classpath ${toolkit.string}/impl/java/ ${toolkit.string}/icons/ ${toolkit.string}/build.xml ${toolkit.string}/pom.xml"
/>
<checksum file="${releasefilename}"/>
<checksum algorithm="sha1" file="${releasefilename}"/>
</target>
<!-- Extract the git commit hash and make release info -->
<target name="releaseinfo" depends="clean-ignored"
description="Make the release information file ${release.info.file}">
<exec executable="git" outputproperty="commithash.long" failonerror="true">
<arg value="rev-parse" />
<arg value="HEAD" />
</exec>
<exec executable="bash" outputproperty="streamsversion" failonerror="true">
<arg value="-c"/>
<arg value="${spl-st} version | grep Version="/>
</exec>
<exec executable="bash" failonerror="true">
<arg value="-c" />
<arg value="echo -e "commit_hash=${commithash.long}\nos=${os.version}\nStreams_${streamsversion}" > ${release.info.file}"/>
</exec>
<echo message="Generated release info file ${release.info.file}"/>
<exec executable="bash" failonerror="true">
<arg value="-c" />
<arg value="cat ${release.info.file}" />
</exec>
<!-- Extract info from the toolkit's info.xml -->
<xmlproperty file="${toolkit}/info.xml" prefix="tkinfo" keepRoot="no"/>
</target>
<target name="releaseinfo-clean"
description="remove the release information file">
<delete file="${release.info.file}"/>
</target>
<!--- Targets to purge the workspace before a release archive is ptroduced -->
<!-- Remove all git-ignored files (exclude model files) and warn if workspace has uncommited changes -->
<target name="clean-ignored" depends="warn-unclean"/>
<target name="warn-unclean" depends="check-unclean" if="has.uncommited">
<echo>!Your workspace is not clean!</echo>
<echo>Commit all changes before you produce a release</echo>
<echo>commitstatus:</echo>
<echo>${commitstatus}</echo>
<input>Press Return key to continue or ^C to exit...</input>
</target>
<target name="check-unclean" depends="warn-untracked">
<exec executable="git" outputproperty="commitstatus">
<arg value="status" />
<arg value="--porcelain" />
</exec>
<!-- set condition true if there are any non-whitespaces -->
<condition property="has.uncommited">
<matches string="${commitstatus}" pattern="\S" multiline="true"/>
</condition>
<echo message="has.uncommited=${has.uncommited}"/>
</target>
<target name="warn-untracked" depends="check-untracked" if="has.untracked">
<echo>!!! DANGER: Git-ignored files to be removed from your workspace:</echo>
<echo>${untracked}</echo>
<input>Press Return key to continue or ^C to exit...</input>
<exec executable="git" failonerror="true">
<arg value="clean"/>
<arg value="--force"/>
<arg value="-d"/>
<arg value="-x"/>
<arg value="--"/>
<arg value="${toolkit}/"/>
<arg value="samples/"/>
<arg value="README.md"/>
<arg value="doc/"/>
</exec>
</target>
<target name="check-untracked">
<exec executable="git" outputproperty="untracked" failonerror="true">
<arg value="clean"/>
<arg value="--dry-run"/>
<arg value="-d"/>
<arg value="-x"/>
<arg value="--"/>
<arg value="${toolkit}/"/>
<arg value="samples/"/>
<arg value="README.md"/>
<arg value="doc/"/>
</exec>
<!-- set condition true if there are any non-whitespaces -->
<condition property="has.untracked">
<matches string="${untracked}" pattern="\S" multiline="true"/>
</condition>
<echo message="has.untracked=${has.untracked}"/>
</target>
</project>