-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathconfig.xml
75 lines (62 loc) · 3.21 KB
/
config.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
<?xml version="1.0" encoding="UTF-8"?>
<cruisecontrol>
<project name="phpUnderControl" buildafterfailed="false">
<propertyfilelabelincrementer propertyfile="projects/${project.name}/source/build.number"
propertyname="build.number"
preBuildIncrementer="true" />
<property file="projects/${project.name}/source/config.properties" />
<listeners>
<currentbuildstatuslistener file="logs/${project.name}/status.txt" />
</listeners>
<bootstrappers>
<gitbootstrapper localWorkingCopy="projects/${project.name}/source" />
</bootstrappers>
<modificationset quietperiod="60">
<git localWorkingCopy="projects/${project.name}/source/" />
</modificationset>
<schedule interval="60">
<ant anthome="apache-ant-1.7.0"
buildfile="projects/${project.name}/source/build.xml"
target="dist">
<property name="continuous-integration" value="true" />
</ant>
</schedule>
<log dir="logs/${project.name}">
<merge dir="projects/${project.name}/build/logs/"/>
</log>
<publishers>
<execute command="phpuc graph
--max-number 50
logs/${project.name}
artifacts/${project.name}" />
<execute command="phpcb --log projects/${project.name}/build/logs
--source projects/${project.name}/source/src
--output projects/${project.name}/build/phpcb" />
<artifactspublisher dir="projects/${project.name}/build/phpcb"
dest="artifacts/${project.name}"
subdirectory="php-code-browser" />
<artifactspublisher dir="projects/${project.name}/build/api"
dest="artifacts/${project.name}"
subdirectory="api" />
<artifactspublisher dir="projects/${project.name}/build/coverage"
dest="artifacts/${project.name}"
subdirectory="coverage" />
<artifactspublisher dir="projects/${project.name}/build/dist"
dest="artifacts/${project.name}"
subdirectory="dist" />
<twitter username="${twitter.username}" password="${twitter.password}" />
<email buildresultsurl="http://cruise.phpundercontrol.org/buildresults/${project.name}"
mailhost="${smtp.hostname}"
mailport="${smtp.portname}"
username="${smtp.username}"
password="${smtp.password}"
reportsuccess="always"
returnaddress="cruise@php-under-control.org"
returnname="Cruise"
spamwhilebroken="false"
subjectprefix="phpUnderControl">
<always address="cruise@php-under-control.org" />
</email>
</publishers>
</project>
</cruisecontrol>