mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 03:18:26 +00:00
Add codestyle and reports-ci targets to phing.
This should make it easier to run and test the various code reports + stylechecking.
This commit is contained in:
parent
557c8edf4f
commit
71371dd9da
1 changed files with 36 additions and 0 deletions
36
build.xml
36
build.xml
|
@ -40,6 +40,9 @@
|
||||||
<include name="cake" />
|
<include name="cake" />
|
||||||
</fileset>
|
</fileset>
|
||||||
|
|
||||||
|
<fileset id="non-tests" dir="./lib/Cake">
|
||||||
|
<exclude name=".lib/Cake/Test" />
|
||||||
|
</fileset>
|
||||||
|
|
||||||
<!-- start fresh each time. Remove the dist and build dirs -->
|
<!-- start fresh each time. Remove the dist and build dirs -->
|
||||||
<target name="clean">
|
<target name="clean">
|
||||||
|
@ -205,10 +208,43 @@
|
||||||
<exec command="ssh cakephp@cakephp.org pirum add ${pirum.dir} ${pirum.dir}/${pear.package}.tgz" checkreturn="true" />
|
<exec command="ssh cakephp@cakephp.org pirum add ${pirum.dir} ${pirum.dir}/${pear.package}.tgz" checkreturn="true" />
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
|
<target name="codestyle" description="Check codestyle (human readable format)">
|
||||||
|
<phpcodesniffer
|
||||||
|
standard="CakePHP"
|
||||||
|
allowedFileExtensions="php">
|
||||||
|
<fileset refid="libs" />
|
||||||
|
</phpcodesniffer>
|
||||||
|
</target>
|
||||||
|
|
||||||
|
<target name="reports-ci">
|
||||||
|
<phpcodesniffer
|
||||||
|
standard="CakePHP"
|
||||||
|
allowedFileExtensions="php">
|
||||||
|
<fileset refid="libs" />
|
||||||
|
<formatter type="checkstyle" outfile="checkstyle.xml" />
|
||||||
|
</phpcodesniffer>
|
||||||
|
<phpcpd
|
||||||
|
minLines="4"
|
||||||
|
minTokens="50">
|
||||||
|
<fileset refid="libs" />
|
||||||
|
<formatter type="pmd" outfile="pmd-cpd.xml"/>
|
||||||
|
</phpcpd>
|
||||||
|
<phpdepend>
|
||||||
|
<fileset refid="non-tests" />
|
||||||
|
<logger type="jdepend-xml" outfile="jdepend.xml"/>
|
||||||
|
</phpdepend>
|
||||||
|
<phpmd rulesets="codesize,unusedcode,design">
|
||||||
|
<fileset refid="non-tests" />
|
||||||
|
<formatter type="xml" outfile="reports/pmd.html"/>
|
||||||
|
</phpmd>
|
||||||
|
</target>
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
Top level easy to type targets
|
Top level easy to type targets
|
||||||
-->
|
-->
|
||||||
<target name="build" depends="generate-package" description="Generate a pear package" />
|
<target name="build" depends="generate-package" description="Generate a pear package" />
|
||||||
<target name="release" depends="release-commit,build,distribute" description="Release a new version of CakePHP" />
|
<target name="release" depends="release-commit,build,distribute" description="Release a new version of CakePHP" />
|
||||||
|
<target name="code-reports" depends="reports-ci"
|
||||||
|
description="Run the code reports, generating XML output for CI server use." />
|
||||||
|
|
||||||
</project>
|
</project>
|
||||||
|
|
Loading…
Reference in a new issue