-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
282 lines (253 loc) · 10.8 KB
/
Copy pathbuild.xml
File metadata and controls
282 lines (253 loc) · 10.8 KB
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
<project name="streamsx.sample" default="all" basedir=".">
<description>
Build file for streamsx.sample 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" location="streamsx.sample"/>
<property name="toolkit.test" location="tests" />
<property name="release.dir" location="release" />
<property name="release.info.file" value="${toolkit}/build.info"/>
<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/>
<target name="all"
description="Build the toolkit code, build the samples index and generate the spl documentation"
depends="toolkit,samples, spldoc_work, toolkitIndexOnly"
/>
<target name="setcommitversion">
<!-- Extract the git commit hash -->
<exec executable="git" outputproperty="commithash">
<arg value="rev-parse"/>
<arg value="--short"/>
<arg value="HEAD"/>
</exec>
<!-- Update the info.xml -->
<replace file="${toolkit}/info.xml" token="__dev__" value="commit_${commithash}" summary="yes"/>
<!-- Extract info from the toolkit's info.xml -->
<xmlproperty file="${toolkit}/info.xml" prefix="tkinfo" keepRoot="no"/>
<echo message="Toolkit Version: ${tkinfo.identity.version}"/>
<echo message="Git Hash: ${commithash}"/>
</target>
<target name="revertversion">
<exec executable="git">
<arg value="checkout"/>
<arg value="--"/>
<arg value="${toolkit}/info.xml"/>
</exec>
</target>
<target name="clean" depends="cleansamples,releaseinfo-clean"
description="clean up toolkit code and samples">
<delete includeemptydirs="true">
<fileset dir="${basedir}" includes="release-*/"/>
</delete>
<ant dir="${toolkit}" target="clean"/>
</target>
<target name="toolkit"
description="Build any code and index the toolkit." >
<ant dir="${toolkit}" target="all"/>
</target>
<target name="toolkitIndexOnly" description="Index the toolkit.">
<ant dir="${toolkit}" target="cleanToolkitxml" />
<ant dir="${toolkit}" target="indextoolkit" />
</target>
<target name="spldoc" depends="setcommitversion, spldoc_work, revertversion"
description="Create SPLDOC with git commit hash included in the version"
/>
<target name="spldoc_work" depends="samples,setcommitversion"
description="Create SPLDOC">
<antcall target="spldoctoolkit">
<param name="tkdir" value="${toolkit}"/>
<param name="tktitle" value="IBMStreams ${tkinfo.identity.name} Toolkit"/>
</antcall>
<subant target="spldoctoolkit" genericantfile="${basedir}/build.xml">
<dirset dir="samples" includes="*"/>
</subant>
</target>
<target name="samples" depends="toolkit" description="Build the toolkit index for the samples">
<subant target="indextoolkit" genericantfile="${basedir}/build.xml">
<dirset dir="samples" includes="*"/>
</subant>
</target>
<target name="cleansamples" description="Clean up samples index and samples code">
<subant genericantfile="${basedir}/build.xml">
<target name="cleantoolkit"/>
<target name="cleansample"/>
<dirset dir="samples" includes="*"/>
</subant>
</target>
<target name="build-all-samples" depends="toolkit" description="Compile all samples">
<subant target="buildsample" genericantfile="${basedir}/build.xml">
<dirset dir="samples" includes="*"/>
</subant>
</target>
<!-- Test targets -->
<target name="tests" depends="toolkit">
<ant dir="${toolkit}" target="test"/>
<ant dir="${toolkit.test}" target="all"/>
</target>
<!-- Targets called on samples -->
<target name="buildsample">
<echo message="Sample to build: ${basedir}"/>
<exec executable="make" failonerror="true" dir="${basedir}">
<arg value="-f" />
<arg value="Makefile" />
<arg value="all" />
</exec>
</target>
<target name="cleansample">
<echo message="Sample to clean: ${basedir}"/>
<exec executable="make" failonerror="true" dir="${basedir}">
<arg value="-f" />
<arg value="Makefile" />
<arg value="clean" />
</exec>
</target>
<target name="indextoolkit">
<echo message="Tookit to index: ${basedir}"/>
<exec executable="${streams.install}/bin/spl-make-toolkit" failonerror="true">
<arg value="--directory"/>
<arg value="${basedir}"/>
<arg value="-m"/>
</exec>
</target>
<target name="cleantoolkit">
<echo message="Tookit to clean: ${basedir}"/>
<exec executable="${streams.install}/bin/spl-make-toolkit">
<arg value="--clean"/>
<arg value="--directory"/>
<arg value="${basedir}"/>
</exec>
<delete dir="${basedir}/output" quiet="true"/>
</target>
<target name="spldoctoolkit">
<property name="tkdir" value="${basedir}"/>
<echo message="Tookit to SPLDOC: ${tkdir}"/>
<exec executable="${streams.install}/bin/spl-make-doc">
<arg value="--include-composite-operator-diagram"/>
<arg value="--author"/>
<arg value="bmwilli at GitHub - https://github.com/bmwilli/${ant.project.name}"/>
<arg value="--doc-title"/>
<arg value="${tktitle}"/>
<arg value="--directory"/>
<arg value="${tkdir}"/>
</exec>
</target>
<!-- Targets to build releases -->
<target name="release" description="Make a toolkit release archive - purge workspace and build toolkit from scratch" depends="clean">
<antcall target="release-target" inheritAll="true"/>
</target>
<target name="release-target" depends="releaseinfo">
<!-- prepare toolkit code and docs -->
<antcall target="all" inheritAll="true"/>
<antcall target="cleansamples" inheritAll="true"/> <!-- remove toolkit index from samples -->
<!-- get os type string -->
<property name="osVersion" value="${os.version}"/>
<condition property="osPlat" value="el7">
<contains string="${osVersion}" substring="el7" casesensitive="false"/>
</condition>
<condition property="osPlat" value="el6">
<contains string="${osVersion}" substring="el6" casesensitive="false"/>
</condition>
<!-- 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.sample.toolkit-${tkinfo.identity.version}-${osPlat}-${os.arch}-${commithash.short}-${DSTAMP}-${TSTAMP}.tgz"/>
<tar compression="gzip" longfile="gnu"
destfile="${releasefilename}"
basedir="${basedir}"
includes="${tkinfo.identity.name}/** samples/**"
excludes="**/.gitignore **/.gitkeep streamsx.sample/impl/java/src-gen/** streamsx.sample/impl/java/classes/** streamsx.sample/impl/cpp/bin/** streamsx.sample/.project streamsx.sample/.settings/** streamsx.sample/.classpath "
/>
<checksum file="${releasefilename}"/>
<checksum algorithm="sha1" file="${releasefilename}"/>
<!-- revert commithash -->
<antcall target="revertversion" inheritAll="true"/>
</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 ${release.info.file}">
<delete file="${release.info.file}"/>
</target>
<!--- Targets to purge the workspace before a release archive is ptroduced -->
<target name="clean-ignored" depends="warn-unclean" description="Remove all git-ignored files (exclude model files) and warn if workspace has uncommited changes"/>
<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>