-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.xml
117 lines (105 loc) · 3.39 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
<?xml version="1.0" encoding="utf-8"?>
<project name="Consistence Sentry Symfony Bundle" default="build">
<property name="path.build" value="${project.basedir}/build"/>
<property name="path.build.properties.local" value="${path.build}/build.local.properties"/>
<property file="${path.build.properties.local}"/>
<property name="file.mode.writable" value="0775"/>
<property name="path.bin" value="${path.root}/bin"/>
<property name="path.build.log" value="${path.build}/log"/>
<property name="path.composer.executable" value="composer"/>
<property name="path.composer-require-checker.executable" value="${path.bin}/composer-require-checker"/>
<property name="path.phpcs.executable" value="${path.bin}/phpcs"/>
<property name="path.phpcs.ruleset" value="${path.build}/cs-ruleset.xml"/>
<property name="path.phplint.executable" value="${path.bin}/parallel-lint"/>
<property name="path.phpunit.configuration" value="${path.tests}/phpunit.xml"/>
<property name="path.phpunit.executable" value="${path.bin}/phpunit"/>
<property name="path.root" value="${project.basedir}"/>
<property name="path.src" value="${path.root}/src"/>
<property name="path.tests" value="${path.root}/tests"/>
<property name="path.tests.coverage.clover" value="${path.build.log}/coverage/clover.xml"/>
<property name="path.tests.type-generated-data" value="${path.tests}/Type/data-generated"/>
<property name="path.vendor" value="${path.root}/vendor"/>
<target name="build" depends="
create-dirs,
composer,
phplint,
cs,
tests,
composer-require-checker
"/>
<target name="composer" depends="composer-validate">
<exec
executable="${path.composer.executable}"
logoutput="true"
passthru="true"
checkreturn="true"
>
<arg value="install"/>
</exec>
</target>
<target name="composer-require-checker">
<exec
executable="${path.composer-require-checker.executable}"
logoutput="true"
passthru="true"
checkreturn="true"
/>
</target>
<target name="composer-validate">
<exec
executable="${path.composer.executable}"
logoutput="true"
passthru="true"
checkreturn="true"
>
<arg value="validate"/>
</exec>
</target>
<target name="create-dirs">
<mkdir dir="${path.build.log}" mode="${file.mode.writable}"/>
<mkdir dir="${path.tests.type-generated-data}" mode="${file.mode.writable}"/>
</target>
<target name="cs">
<exec
executable="${path.phpcs.executable}"
logoutput="true"
passthru="true"
checkreturn="true"
>
<arg value="--standard=${path.phpcs.ruleset}"/>
<arg value="--extensions=php"/>
<arg value="--encoding=utf-8"/>
<arg value="--ignore=${path.tests.type-generated-data}"/>
<arg value="--report=full"/>
<arg value="--report-checkstyle=${path.build.log}/phpcs-checkstyle.xml"/>
<arg value="-sp"/>
<arg path="${path.src}"/>
<arg path="${path.tests}"/>
</exec>
</target>
<target name="phplint">
<exec
executable="${path.phplint.executable}"
logoutput="true"
passthru="true"
checkreturn="true"
>
<arg path="${path.src}"/>
<arg path="${path.tests}"/>
</exec>
</target>
<target name="tests">
<exec
executable="${path.phpunit.executable}"
logoutput="true"
passthru="true"
checkreturn="true"
>
<arg value="--configuration"/>
<arg value="${path.phpunit.configuration}"/>
<arg value="--coverage-clover"/>
<arg value="${path.tests.coverage.clover}"/>
<arg path="${path.tests}"/>
</exec>
</target>
</project>