forked from ooici/pyon
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.xml
57 lines (50 loc) · 2.09 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
<!-- Ant build file for pyon -->
<project name="pyon" default="info" basedir=".">
<description>
This is the ANT build file for the OOI CI Python capability
container and service platform.
</description>
<!-- load python specific ant tasks from jar file -->
<taskdef resource="pyAntTasks.properties" classpath="scripts/lib/pyAntTasks-1.3.3.jar"/>
<!-- set global properties for this build -->
<property name="src" location="pyon"/>
<property name="build" location="build"/>
<property name="dist" location="dist"/>
<target name="info">
<echo message="pyon ant build file. Specify a target to build."/>
<echo message="Run 'ant -p' to retrieve a list of targets."/>
</target>
<target name="init">
<!-- Create the time stamp -->
<tstamp/>
</target>
<!-- Precompiles all Python code without executing. Finds compile errors -->
<target name="compile" depends="init" description="Compile the source">
<py-compile dir="${src}" pythonpath="${src}" optimize="0"/>
<py-compile dir="scripts" pythonpath="${src}" optimize="0"/>
<py-compile dir="prototype" pythonpath="${src}" optimize="0"/>
</target>
<target name="clean" description="clean up">
<delete>
<fileset dir="${src}" includes="**/*.pyc"/>
<fileset dir="scripts" includes="**/*.pyc"/>
<fileset dir="prototype" includes="**/*.pyc"/>
</delete>
<delete dir="interface"/>
<delete dir="${build}"/>
<delete dir="${dist}"/>
<delete dir="pyon.egg-info"/>
<!--<antcall target="remeggs"/>-->
</target>
<target name="clean-buildout"
description="clean up buildout dirs" depends="clean" >
<echo message="Clean up buildout directories. Please run `python bootstrap.py` to start buildout."/>
<delete dir="parts"/>
<delete dir="develop-eggs"/>
<delete dir="bin"/>
<delete dir="downloads"/>
<delete dir="eggs"/>
<delete dir="build"/>
<delete file=".installed.cfg"/>
</target>
</project>