forked from ooici/coi-services
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.xml
64 lines (54 loc) · 2.46 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
<!-- Ant build file for pyon -->
<project name="pyon" default="info" basedir=".">
<description>
This is the ANT build file for the OOI COI Services module.
This module is set up to start the pyon CC and parts of the ION system from.
</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="ion"/>
<property name="build" location="build"/>
<property name="dist" location="dist"/>
<property name="pyon.base" location="../pyon"/>
<property name="iondef.base" location="../ion-definitions"/>
<target name="info">
<echo message="Repository for COI-services as part of the ION system."/>
<echo message="This repository is enabled to launch the ION system and containers from."/>
<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"/>
</target>
<target name="clean" description="clean up">
<delete failonerror="false">
<fileset dir="${src}" includes="**/*.pyc"/>
<fileset dir="scripts" includes="**/*.pyc"/>
<fileset dir="examples" includes="**/*.pyc"/>
</delete>
<delete dir="interface" failonerror="false"/>
<delete dir="${build}" failonerror="false"/>
<delete dir="${dist}" failonerror="false"/>
<delete dir="pyon.egg-info" failonerror="false"/>
<!--<antcall target="remeggs"/>-->
</target>
<!-- Generates the interfaces -->
<target name="interfaces" depends="clean" description="Generate the interfces">
</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 file=".installed.cfg"/>
</target>
</project>