-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.xml
200 lines (168 loc) · 7.19 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
<!-- Build NS. It is also used by Hudson NS project. JUnit test is available for this build. -->
<project basedir="." default="package" name="BUILD_NS">
<description>
Build NS.
Also used by Hudson NS project.
JUnit test is available for this build.
$Id: build_NS.xml $
</description>
<!-- set global properties for this build -->
<property name="NSdir" location="../nested-sampling/" />
<property name="srcNS" location="${NSdir}/src" />
<property name="buildNS" location="${NSdir}/build" />
<property name="libNS" location="${NSdir}/lib" />
<property name="release_dir" value="${NSdir}/release" />
<property name="distNS" location="${buildNS}/dist" />
<property name="beast2path" location="../beast2" />
<property name="libBeast2" location="${beast2path}/lib" />
<property name="srcBeast2" location="${beast2path}/src" />
<property name="beast2classpath" location="${beast2path}/build" />
<property name="beastappclasspath" location="../BeastFX/build" />
<property name="buildMODEL_SELECTION" location="../model-selection/build" />
<property name="Add_on_dir" value="${release_dir}/add-on" />
<import file="${beast2path}/build.xml" />
<property name="main_class_BEAST" value="beast.app.BeastMCMC" />
<property name="report" value="${buildNS}/junitreport"/>
<path id="classpath">
<pathelement path="${buildNS}"/>
<fileset dir="${libBeast2}" includes="antlr-runtime-4.10.1.jar"/>
<fileset dir="${libBeast2}" includes="beagle.jar"/>
<fileset dir="${libBeast2}" includes="commons-math3-3.6.1.jar"/>
<fileset dir="${libBeast2}" includes="colt.jar"/>
<fileset dir="${libBeast2}/junit/" includes="junit-platform-console-standalone-1.8.2.jar"/>
<pathelement path="${buildMODEL_SELECTION}"/>
<pathelement path="${beastappclasspath}"/>
<pathelement path="${beast2classpath}"/>
</path>
<!-- start -->
<target name="initNS">
<echo message="${ant.project.name}: ${ant.file}" />
<available file="${NSdir}/version.xml" property="versionAvailable"/>
<fail unless="versionAvailable">
** Required file version.xml does not exist. **
</fail>
<!-- Read package name and version from xml file -->
<xmlproperty file="${NSdir}/version.xml" prefix="fromVersionFile" />
<property name="NSversion" value="${fromVersionFile.package(version)}" />
</target>
<target name="cleanNS">
<delete dir="${buildNS}" />
</target>
<!-- clean previous build, and then compile Java source code, and Juint test -->
<target name="build_all_NS" depends="cleanNS,compile-allNS,junitNS"
description="Clean and Build all run-time stuff">
</target>
<!-- clean previous build, compile Java source code, and Junit test, and make the beast.jar and beauti.jar -->
<target name="build_jar_all_NS" depends="cleanNS,compile-allNS,junitNS,dist_all_NS"
description="Clean and Build all run-time stuff">
</target>
<!-- No JUnit Test, clean previous build, compile Java source code, and make the NS.jar and beauti.jar -->
<target name="build_jar_all_NS_NoJUnitTest" depends="cleanNS,compile-allNS,dist_all_NS"
description="Clean and Build all run-time stuff">
</target>
<!-- compile Java source code -->
<target name="compile-allNS" depends="initNS,compile-all">
<!-- Capture the path as a delimited property using the refid attribute -->
<property name="myclasspath" refid="classpath"/>
<!-- Emit the property to the ant console -->
<echo message="Classpath = ${myclasspath}"/>
<mkdir dir="${buildNS}" />
<!-- Compile the java code from ${srcNS} into ${buildNS} /bin -->
<javac srcdir="${srcNS}" destdir="${buildNS}" classpathref="classpath"
fork="true"
memoryinitialsize="256m"
memorymaximumsize="256m">
<include name="nestedsampling/**/**" />
<!-- compile JUnit test classes -->
<include name="test/beast/**" />
</javac>
<echo message="Successfully compiled." />
</target>
<!-- make the beast.jar and beauti.jar -->
<target name="dist_all_NS" depends="compile-allNS" description="create NS jar">
<!-- Create the distribution directory -->
<mkdir dir="${distNS}" />
<jar jarfile="${distNS}/NS.src.jar">
<fileset dir="${srcNS}">
<include name="nestedsampling/**/*.java" />
<include name="nestedsampling/**/*.png" />
<include name="nestedsampling/**/*.xsl" />
</fileset>
</jar>
<jar jarfile="${distNS}/NS.package.jar">
<manifest>
<attribute name="Built-By" value="${user.name}" />
</manifest>
<fileset dir="${buildNS}">
<include name="nestedsampling/**/*.class" />
<include name="util/**/*.class" />
<include name="**/*.properties" />
</fileset>
</jar>
</target>
<!-- run beast.jar -->
<target name="run_NS">
<java jar="${distNS}/NS.jar" fork="true" />
</target>
<!-- JUnit test -->
<target name="junitNS">
<mkdir dir="${report}" />
<junit printsummary="yes"> <!--showoutput='yes'-->
<classpath>
<path refid="classpath" />
<path location="${buildNS}" />
</classpath>
<formatter type="xml" />
<batchtest fork="yes" todir="${report}">
<fileset dir="${srcNS}">
<include name="test/**/*Test.java"/>
</fileset>
<fileset dir="${srcBeast2}">
<include name="test/beast/integration/**/*Test.java"/>
<exclude name="test/beast/integration/**/ResumeTest.java"/>
<exclude name="test/beast/integration/ExampleXmlParsingTest.java"/>
</fileset>
</batchtest>
</junit>
<echo message="JUnit test finished." />
</target>
<target name="junitreport">
<junitreport todir="${report}">
<fileset dir="${report}" includes="*.xml"/>
<report format="frames" todir="${report}"/>
</junitreport>
<echo message="JUnit test report finished." />
</target>
<target name="addon" depends="package"/>
<target name="package"
depends="build_jar_all_NS_NoJUnitTest"
description="release BEAST 2 add-on version of NS">
<delete dir="${Add_on_dir}" />
<!-- Create the release directory -->
<mkdir dir="${Add_on_dir}" />
<mkdir dir="${Add_on_dir}/lib" />
<mkdir dir="${Add_on_dir}/examples" />
<mkdir dir="${Add_on_dir}/fxtemplates" />
<copy todir="${Add_on_dir}">
<fileset file="version.xml"/>
</copy>
<copy todir="${Add_on_dir}/examples">
<fileset dir="examples" />
</copy>
<copy todir="${Add_on_dir}/lib">
<fileset dir="${distNS}" includes="NS.package.jar" />
</copy>
<copy todir="${Add_on_dir}">
<fileset dir="${distNS}" includes="NS.src.jar" />
</copy>
<copy todir="${Add_on_dir}/fxtemplates">
<fileset file="fxtemplates/NS.xml" />
</copy>
<jar jarfile="${distNS}/NS.package.v${NSversion}.zip">
<fileset dir="${Add_on_dir}">
<include name="**/*" />
</fileset>
</jar>
<echo message="Add-on version v${NSversion} release is finished." />
</target>
</project>