-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbuild.xml
239 lines (214 loc) · 7.36 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
<?xml version="1.0" ?>
<project default="default" name="VoltDB-vertica-udxloader-function">
<!-- GENERAL HELPER MACROS -->
<macrodef name="envdefault">
<attribute name="prop" />
<attribute name="var" />
<attribute name="default" />
<sequential>
<condition property="@{prop}" value="${env.@{var}}" else="@{default}">
<isset property="env.@{var}" />
</condition>
</sequential>
</macrodef>
<macrodef name="invoke-javac17">
<attribute name="srcdir"/>
<attribute name="destdir" default="${build.dir}"/>
<attribute name="excludes" default=""/>
<attribute name="includes" default=""/>
<attribute name="classpaths" default="project.classpath"/>
<sequential>
<javac
target="1.7"
source="1.7"
srcdir="@{srcdir}"
destdir="@{destdir}"
excludes="@{excludes}"
includes="@{includes}"
encoding='UTF-8'
debug='true'
includeAntRuntime='false'>
<classpath refid="@{classpaths}" />
</javac>
</sequential>
</macrodef>
<tstamp/>
<!-- make environment var foo available as env.foo -->
<property environment="env"/>
<!-- allow env.VOLTBUILD to override "build" property -->
<envdefault prop="volt.dir" var="VOLTDB" default="../voltdb" />
<envdefault prop="vertica.dir" var="VERTICA" default="/opt/vertica" />
<property name='base.dir' location='.' />
<property name='build.dir' location='obj' />
<property name='build.test.dir' location='${build.dir}/test' />
<property name='build.testoutput.dir' location='${build.dir}/testoutput' />
<property name='src.dir' location='src/main/java' />
<property name='test.dir' location='src/test/java' />
<property name='lib.dir' location='${volt.dir}/lib' />
<property name='voltdb.dir' location='${volt.dir}/voltdb' />
<property name='voltcore.thirdparty.dir' location='${volt.dir}/third_party/java/jars' />
<property name='voltcore.tools' location='${volt.dir}/tools' />
<property name='depcache' value='.depcache' />
<property name="j2se_api" value="http://docs.oracle.com/javase/7/docs/api/"/>
<path id='project.classpath'>
<pathelement location='${build.dir}' />
<pathelement location='${build.test.dir}' />
<fileset dir='${lib.dir}'>
<include name='*.jar' />
</fileset>
<fileset dir='${voltdb.dir}'>
<include name='voltdb-*.jar' />
</fileset>
<pathelement path='${vertica.dir}/bin/VerticaSDK.jar'/>
<pathelement path="${java.class.path}"/>
</path>
<path id='project.test.classpath'>
<path refid='project.classpath'/>
<fileset dir='${voltcore.thirdparty.dir}'>
<include name='*.jar' />
</fileset>
</path>
<!-- common macro to run a bynch of junit -->
<macrodef name="run_junit">
<attribute name="timeout"/>
<attribute name="printsummary" default="off" />
<attribute name="showoutput" default="false" />
<element name="tests"/>
<element name="formatters"/>
<sequential>
<mkdir dir="${build.testoutput.dir}" />
<junit
dir="/tmp"
fork="yes"
haltonfailure="no"
failureproperty="junit.failures"
printsummary="@{printsummary}"
timeout="@{timeout}"
maxmemory="1024M"
showoutput="@{showoutput}"
>
<classpath refid="project.test.classpath" />
<jvmarg value="-Xmx2048m"/>
<jvmarg value="-XX:+HeapDumpOnOutOfMemoryError"/>
<formatters/>
<batchtest todir="${build.testoutput.dir}">
<tests/>
</batchtest>
<assertions><enable/></assertions>
</junit>
</sequential>
</macrodef>
<!--
***************************************
PRIMARY ENTRY POINTS
***************************************
-->
<target name="default"
depends="voltdb-udxload.jar"
description="Compile, build VoltDB UDx based loader for Vertica."
/>
<!--
***************************************
CLEANING
***************************************
-->
<target name='clean' description="Remove all built artifacts.">
<exec dir='.' executable='/bin/sh'>
<arg line="-c 'rm -rf ${build.dir}'"/>
</exec>
<exec dir='.' executable='/bin/sh'>
<arg line="-c 'rm -rf voltdb-udxload.jar'"/>
</exec>
</target>
<!--
***************************************
JAR BUILDING
***************************************
-->
<target name="voltdb-udxload.jar" depends="compile">
<jar destfile="tvoltdb-udxload.jar">
<fileset dir="${build.dir}" defaultexcludes="yes" >
<include name="**" />
</fileset>
<manifest>
<section name="Credits">
<attribute name="Author" value="VoltDB Inc." />
</section>
<section name="Shared">
<attribute
name="Title"
value="VoltDB Vertica Extension for loading data into VoltDB"
/>
<attribute name="Date" value="${TODAY}" />
</section>
</manifest>
</jar>
<zip destfile="voltdb-udxload.jar">
<zipgroupfileset dir="." includes="tvoltdb-udxload.jar"/>
<zipgroupfileset dir="${volt.dir}/voltdb" includes="voltdbclient-*.jar"/>
</zip>
<exec dir='.' executable='/bin/sh'>
<arg line="-c 'rm -f tvoltdb-udxload.jar'"/>
</exec>
</target>
<!--
***************************************
JAVA COMPILATION
***************************************
-->
<target name="compile" description="Compile all Java source">
<mkdir dir='${build.dir}' />
<invoke-javac17
srcdir="${vertica.dir}/sdk"
includes="BuildInfo.java"/>
<invoke-javac17
srcdir="${src.dir}"
includes="org/voltdb/vertica/VoltDBLoader.java,org/voltdb/vertica/VoltDBCall.java"/>
</target>
<target name="compile.tests" description="Compile all Java tests">
<mkdir dir='${build.test.dir}' />
<invoke-javac17
srcdir="${test.dir}"
destdir="${build.test.dir}"
includes="org/voltdb/vertica/Test*.java"
classpaths="project.test.classpath"/>
</target>
<!--
***************************************
TEST
***************************************
-->
<target name="junit" depends="compile, compile.tests">
<mkdir dir="${build.testoutput.dir}" />
<run_junit timeout="900000" printsummary="yes">
<formatters>
<formatter type="xml" />
</formatters>
<tests>
<fileset dir="${build.test.dir}">
<include name="org/voltdb/vertica/**/Test*.class"/>
</fileset>
</tests>
</run_junit>
<mkdir dir="${build.testoutput.dir}/report"/>
<junitreport todir="${build.testoutput.dir}">
<fileset dir="${build.testoutput.dir}">
<include name="TEST-*.xml" />
</fileset>
<report format="noframes" todir="${build.testoutput.dir}/report"/>
<report
styledir="${voltcore.tools}"
format="noframes"
todir="${build.testoutput.dir}"
/>
</junitreport>
<!-- Fail the build if there were any problems.
This runs all the tests before failing. -->
<fail
if="junit.failures"
unless="emma.enabled"
message="JUnit had failures"
/>
</target>
<!-- END PROJECT -->
</project>