-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbuild.xml
180 lines (158 loc) · 7.22 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
<project name="streamsx.slack" default="all">
<description>Build file for streamsx.slack project, built the toolkit, doc, release, test</description>
<!-- check streams install and exit if there is a bad value in streams.install -->
<property environment="env" />
<fail unless="env.STREAMS_INSTALL" message="No streams installation found. Exiting!"/>
<!-- set global properties for this build -->
<property name="toolkit.dir" value="com.ibm.streamsx.slack"/>
<property name="doc.string" value="doc"/>
<property name="doc.dir" value="${doc.string}/spldoc"/>
<property name="samples.dir" value="samples"/>
<property name="test.dir" value="tests"/>
<property name="release.dir" value="release"/>
<property name="release.info.file" value="${toolkit.dir}/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/>
<!-- Extract the git commit hash -->
<exec executable="git" outputproperty="commithash">
<arg value="rev-parse" />
<arg value="--short" />
<arg value="HEAD" />
</exec>
<target name="all" depends="toolkit,spldoc"
description="Main target: Build all toolkit artifacts, toolkit documentation - incremental build"/>
<target name="clean" depends="spldoc-clean,toolkit-clean,releaseinfo-clean"
description="Main target: Clean all generated and downloaded toolkit files and clean the documentation"/>
<target name="toolkit"
description="Main target: Build toolkit code and index the toolkit - incremental build.">
<ant dir="${toolkit.dir}" target="all" />
</target>
<target name="toolkit-clean"
description="Main target: Clean all generated and downloaded toolkit files">
<ant dir="${toolkit.dir}" target="clean" />
</target>
<target name="spldoc" depends="toolkit"
description="Generate the toolkit documentation">
<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.dir}" />
<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.string}"/>
</target>
<!-- Targets to build releases -->
<target name="release" depends="clean,spldoc-clean"
description="Main target: 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">
<antcall target="spldoc"/>
<mkdir dir="${release.dir}"/>
<xmlproperty file="${toolkit.dir}/info.xml" prefix="tkinfo" keepRoot="no"/>
<echo message="Make releasefile Toolkit Version: ${tkinfo.info:identity.info:version}"/>
<property name="releasefilename" value="${release.dir}/${ant.project.name}-${tkinfo.info:identity.info:version}-${commithash}-${DSTAMP}-${TSTAMP}.tgz"/>
<tar compression="gzip" longfile="gnu"
destfile="${releasefilename}"
basedir="${basedir}"
includes="${toolkit.dir}/** ${samples.dir}/** ${doc.string}/** README.md LICENSE"
excludes="**/.toolkitList **/.gitignore ${toolkit.dir}/.settings/ ${toolkit.dir}/.project ${toolkit.dir}/.classpath ${toolkit.dir}/build.xml ${toolkit.dir}/pom.xml ${toolkit.dir}/icons/ ${toolkit.dir}/impl/java/"
/>
<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">
<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>
</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 -->
<target name="clean-ignored" depends="warn-unclean"
description="Remove all git-ignored files and warn if workspace has uncommited changes">
</target>
<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 or untracked 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.dir}"/>
<arg value="${samples.dir}"/>
<arg value="${doc.string}"/> <!-- use a value here because git clean fails is this is an location and is empty -->
</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.dir}"/>
<arg value="${samples.dir}"/>
<arg value="${doc.string}"/> <!-- use a value here because git clean fails is this is an location and is empty -->
</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>