-
Notifications
You must be signed in to change notification settings - Fork 7
/
build.xml
162 lines (144 loc) · 6.03 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
<project name="streamsx.plumbing" default="all" basedir=".">
<description>
Build file for streamsx.plumbing 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="com.ibm.streamsx.plumbing"/>
<property name="release.base" location="release-${ant.project.name}-" />
<property name="toolkit.test" location="tests" />
<target name="all" depends="toolkit,samples, spldoctoolkits, toolkitIndexOnly"/>
<target name="setcommitversion">
<!-- Create the time stamp -->
<tstamp/>
<!-- 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.info:identity.info: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"
description="clean up" >
<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="samples" depends="toolkit">
<subant target="indextoolkit" genericantfile="${basedir}/build.xml">
<dirset dir="samples" includes="*"/>
</subant>
</target>
<target name="cleansamples">
<subant target="cleantoolkit" genericantfile="${basedir}/build.xml">
<dirset dir="samples" includes="*"/>
</subant>
</target>
<!-- Test targets -->
<target name="tests" depends="toolkit">
<exec executable="python3" dir="tests">
<arg value="runtests.py"/>
<arg value="-f"/>
<arg value="tests.tl"/>
</exec>
</target>
<property name="cisps" value="com.ibm.streamsx.plumbing.sample"/>
<target name="test.compile.samples" depends="toolkit">
<delete dir="samples/redundant/output" quiet="true"/>
<exec executable="${streams.install}/bin/sc" failonerror="true"
dir="samples/redundant">
<arg value="-M"/>
<arg value="${cisps}.redundant.active::ActiveReplicasManual2"/>
</exec>
<delete dir="samples/redundant/output" quiet="true"/>
<exec executable="${streams.install}/bin/sc" failonerror="true"
dir="samples/redundant">
<arg value="-M"/>
<arg value="${cisps}.redundant.active::ActiveReplicasManual3"/>
</exec>
<delete dir="samples/redundant/output" quiet="true"/>
<exec executable="${streams.install}/bin/sc" failonerror="true"
dir="samples/redundant">
<arg value="-M"/>
<arg value="${cisps}.redundant.active::ActiveReplicasUDP"/>
</exec>
<delete dir="samples/redundant/output" quiet="true"/>
<exec executable="${streams.install}/bin/sc" failonerror="true"
dir="samples/redundant">
<arg value="-M"/>
<arg value="${cisps}.redundant.active::ActiveReplicasManual3DeDup"/>
<arg value="-t"/>
<arg value="${streams.install}/toolkits:${toolkit}"/>
</exec>
</target>
<!-- Targets called on samples -->
<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" failonerror="true">
<arg value="--clean"/>
<arg value="--directory"/>
<arg value="${basedir}"/>
</exec>
<delete dir="${basedir}/output" quiet="true"/>
</target>
<target name="spldoctoolkits">
<exec executable="${streams.install}/bin/spl-make-doc">
<arg value="--include-composite-operator-diagram"/>
<arg value="--include-source"/>
<arg value="--author"/>
<arg value="IBMStreams Open Source Community at GitHub - https://github.com/IBMStreams/${ant.project.name}"/>
<arg value="--doc-title"/>
<arg value="com.ibm.streamsx.plumbing"/>
<arg value="--toolkit-path"/>
<arg value="${toolkit}:samples"/>
<arg value="--output-directory"/>
<arg value="${toolkit}/doc/spldoc"/>
</exec>
</target>
<!-- Targets to build releases -->
<target name="release" depends="clean,setcommitversion,create_release_bundle,revertversion,toolkitIndexOnly"/>
<target name="create_release_bundle" depends="all">
<property name="release.dir" location="${release.base}${commithash}" />
<mkdir dir="${release.dir}" />
<property name="releasefilename" value="${release.dir}/streamsx.plumbing.toolkits-${tkinfo.info:identity.info:version}-${DSTAMP}-${TSTAMP}.tgz"/>
<tar compression="gzip" longfile="gnu"
destfile="${releasefilename}"
basedir="${basedir}"
includes="${tkinfo.info:identity.info:name}/** samples/**"
excludes="**/.gitignore **/.settings/** **/.settings **/.project **/.classpath"
/>
<checksum file="${releasefilename}"/>
<checksum algorithm="sha1" file="${releasefilename}"/>
</target>
</project>