forked from sebastianbergmann/phpcov
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
131 lines (113 loc) · 4.86 KB
/
build.xml
File metadata and controls
131 lines (113 loc) · 4.86 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<project name="phpcov" default="setup">
<target name="setup" depends="clean,install-dependencies"/>
<target name="clean" description="Cleanup build artifacts">
<delete file="${basedir}/composer.lock"/>
<delete dir="${basedir}/vendor"/>
<delete dir="${basedir}/build/phar"/>
<delete>
<fileset dir="${basedir}/build">
<include name="**/phpcov*.phar"/>
<include name="**/phpcov*.phar.asc"/>
</fileset>
</delete>
</target>
<target name="update-tools" description="Update tools">
<exec executable="phive" taskname="phive">
<arg value="--no-progress"/>
<arg value="update"/>
<arg value="--force-accept-unsigned"/>
</exec>
</target>
<target name="install-dependencies" depends="clean" description="Install dependencies with Composer">
<exec executable="${basedir}/tools/composer" taskname="composer">
<arg value="update"/>
<arg value="--no-interaction"/>
<arg value="--no-progress"/>
<arg value="--no-ansi"/>
</exec>
</target>
<target name="signed-phar"
description="Create signed PHAR archive of phpcov and all its dependencies (release)"
depends="phar">
<exec executable="bash" outputproperty="version">
<arg value="-c" />
<arg value="${basedir}/phpcov --version | awk 'BEGIN { ORS = ""; } {print $2}'" />
</exec>
<exec executable="gpg" failonerror="true">
<arg value="--armor" />
<arg value="--detach-sign" />
<arg path="${basedir}/build/phpcov-${version}.phar" />
</exec>
</target>
<target name="phar"
description="Create PHAR archive of phpcov and all its dependencies"
depends="clean,install-dependencies,phar-build">
<mkdir dir="${basedir}/build/phar"/>
</target>
<target name="phar-build">
<exec executable="bash" outputproperty="version">
<arg value="-c"/>
<arg value="${basedir}/phpcov --version | awk 'BEGIN { ORS = ""; } {print $2}'"/>
</exec>
<copy todir="${basedir}/build/phar/src">
<fileset dir="${basedir}/src">
<include name="**/*.php"/>
</fileset>
</copy>
<copy todir="${basedir}/build/phar/phpunit">
<fileset dir="${basedir}/vendor/phpunit">
<include name="**/*.php"/>
<include name="php-code-coverage/src/Report/Html/Renderer/Template/**"/>
<exclude name="**/build/**"/>
<exclude name="**/tests/**"/>
</fileset>
</copy>
<copy todir="${basedir}/build/phar/sebastian">
<fileset dir="${basedir}/vendor/sebastian">
<include name="**/src/**/*.php"/>
</fileset>
</copy>
<copy todir="${basedir}/build/phar/nikic">
<fileset dir="${basedir}/vendor/nikic/php-parser/lib">
<include name="**/*.php" />
</fileset>
</copy>
<copy todir="${basedir}/build/phar/theseer">
<fileset dir="${basedir}/vendor/theseer">
<include name="**/src/**/*.php"/>
</fileset>
</copy>
<exec executable="${basedir}/build/phar-manifest.php" output="${basedir}/build/phar/manifest.txt"/>
<exec executable="${basedir}/tools/phpab">
<arg value="--all"/>
<arg value="--phar"/>
<arg value="--output"/>
<arg path="${basedir}/build/phpcov-${version}.phar"/>
<arg value="--template"/>
<arg path="${basedir}/build/phar-autoload.php.in"/>
<arg value="--indent"/>
<arg value=" "/>
<arg path="${basedir}/build/phar"/>
</exec>
<chmod file="${basedir}/build/phpcov-${version}.phar" perm="ugo+rx"/>
</target>
<target name="update-fixture">
<exec executable="${basedir}/vendor/bin/phpunit" taskname="phpunit">
<arg value="--configuration"/>
<arg path="${basedir}/tests/fixture/example/phpunit.xml"/>
<arg value="--coverage-php"/>
<arg path="${basedir}/tests/fixture/example/coverage/testGreetsWorld.cov"/>
<arg value="--filter"/>
<arg value="testGreetsWorld"/>
</exec>
<exec executable="${basedir}/vendor/bin/phpunit" taskname="phpunit">
<arg value="--configuration"/>
<arg path="${basedir}/tests/fixture/example/phpunit.xml"/>
<arg value="--coverage-php"/>
<arg path="${basedir}/tests/fixture/example/coverage/testGreetsWithName.cov"/>
<arg value="--filter"/>
<arg value="testGreetsWithName"/>
</exec>
</target>
</project>