forked from wernerdweight/victor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.xml
139 lines (128 loc) · 3.65 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
<?xml version="1.0" encoding="utf-8"?>
<project name="Monolog Tracy" 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="path.bin" value="${path.root}/bin"/>
<property name="path.box.executable" value="build/box.phar"/>
<property name="path.build" value="${path.root}/build"/>
<property name="path.composer.executable" value="composer"/>
<property name="path.phpcs.executable" value="${path.vendor.bin}/phpcs"/>
<property name="path.phpcs.ruleset" value="${path.vendor}/nella/coding-standard/Nella/ruleset.xml"/>
<property name="path.phplint.executable" value="${path.vendor.bin}/parallel-lint"/>
<property name="path.phpunit.configuration" value="${path.tests}/phpunit.xml"/>
<property name="path.phpunit.executable" value="${path.vendor.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.vendor" value="${path.root}/vendor"/>
<property name="path.vendor.bin" value="${path.vendor}/bin"/>
<target name="build" depends="
composer,
check
"/>
<target name="ci-build" depends="
composer-validate,
check,
compile
"/>
<target name="check" depends="
phplint,
cs,
tests
"/>
<target name="composer" depends="composer-validate">
<exec
executable="${path.composer.executable}"
logoutput="true"
passthru="true"
checkreturn="true"
>
<arg value="install"/>
<arg value="--no-interaction"/>
</exec>
</target>
<target name="composer-validate">
<exec
executable="${path.composer.executable}"
logoutput="true"
passthru="true"
checkreturn="true"
>
<arg value="validate"/>
<arg value="--no-check-lock"/>
<arg value="--no-interaction"/>
</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="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="-sp"/>
<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}"/>
</exec>
</target>
<target name="compile">
<php expression="defined('HHVM_VERSION') ?'true':'false'" returnProperty="isHHVM" level="verbose" />
<php expression="strtoupper(substr(PHP_OS, 0, 3)) === 'WIN' ?'true':'false'" returnProperty="isWindows" level="verbose" />
<if>
<and>
<equals arg1="${isHHVM}" arg2="false" />
<equals arg1="${isWindows}" arg2="false" />
</and>
<then>
<exec
executable="${path.composer.executable}"
logoutput="true"
passthru="true"
checkreturn="true"
>
<arg value="install"/>
<arg value="--no-dev"/>
<arg value="--quiet"/>
<arg value="--no-interaction"/>
</exec>
<exec
executable="${path.box.executable}"
logoutput="true"
passthru="true"
checkreturn="true"
>
<arg value="build"/>
</exec>
</then>
<else>
<echo message="Compile is not supported on HHVM and Windows." />
</else>
</if>
</target>
</project>