Update build.xml for phing

This commit is contained in:
Timothy Warren 2016-05-03 13:18:12 -04:00
parent fd23039512
commit 6cda9a984a
1 changed files with 134 additions and 217 deletions

351
build.xml
View File

@ -1,248 +1,165 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<project name="query" default="full-build"> <project name="query" default="full-build">
<!-- By default, we assume all tools to be on the $PATH --> <!-- By default, we assume all tools to be on the $PATH -->
<property name="pdepend" value="pdepend"/> <property name="pdepend" value="pdepend"/>
<property name="phpcpd" value="phpcpd"/> <property name="phpcpd" value="phpcpd"/>
<property name="phpcs" value="phpcs"/> <property name="phpdox" value="phpdox"/>
<property name="phpdox" value="phpdox"/> <property name="phploc" value="phploc"/>
<property name="phploc" value="phploc"/> <property name="phpmd" value="phpmd"/>
<property name="phpmd" value="phpmd"/> <property name="phpunit" value="phpunit"/>
<property name="phpunit" value="phpunit"/> <property name="sonar" value="sonar-runner"/>
<property name="sonar" value="sonar-runner"/>
<!-- Use this when the tools are located as PHARs in build/tools <target name="full-build" depends="prepare,static-analysis,phpunit,phpdox,sonar" description="Performs static analysis, runs the tests, and generates project documentation"/>
<property name="pdepend" value="build/tools/pdepend.phar"/> <target name="quick-build" depends="prepare,lint,phpunit-no-coverage" description="Performs a lint check and runs the tests (without generating code coverage reports)"/>
<property name="phpcpd" value="build/tools/phpcpd.phar"/> <target name="static-analysis" depends="lint,phploc-ci,pdepend,phpcpd-ci" description="Performs static analysis"/>
<property name="phpcs" value="build/tools/phpcs.phar"/>
<property name="phpdox" value="build/tools/phpdox.phar"/>
<property name="phploc" value="build/tools/phploc.phar"/>
<property name="phpmd" value="build/tools/phpmd.phar"/>
<property name="phpunit" value="build/tools/phpunit.phar"/> -->
<!-- Use this when the tools are managed by Composer in vendor/bin <target name="clean" unless="clean.done" description="Cleanup build artifacts">
<property name="pdepend" value="vendor/bin/pdepend"/> <delete dir="build/api"/>
<property name="phpcpd" value="vendor/bin/phpcpd"/> <delete dir="build/coverage"/>
<property name="phpcs" value="vendor/bin/phpcs"/> <delete dir="build/logs"/>
<property name="phpdox" value="vendor/bin/phpdox"/> <delete dir="build/pdepend"/>
<property name="phploc" value="vendor/bin/phploc"/> <delete dir="build/phpdox"/>
<property name="phpmd" value="vendor/bin/phpmd"/> <property name="clean.done" value="true"/>
<property name="phpunit" value="vendor/bin/phpunit"/> --> </target>
<target name="full-build" <target name="prepare" unless="prepare.done" depends="clean" description="Prepare for build">
depends="prepare,static-analysis,phpunit,phpdox,sonar,-check-failure" <mkdir dir="build/api"/>
description="Performs static analysis, runs the tests, and generates project documentation"/> <mkdir dir="build/coverage"/>
<mkdir dir="build/logs"/>
<mkdir dir="build/pdepend"/>
<mkdir dir="build/phpdox"/>
<property name="prepare.done" value="true"/>
</target>
<target name="full-build-parallel" <target name="lint" unless="lint.done" description="Perform syntax check of sourcecode files">
depends="prepare,static-analysis-parallel,phpunit,phpdox,-check-failure" <parallel threadcount="6">
description="Performs static analysis (executing the tools in parallel), runs the tests, and generates project documentation"/> <apply executable="php" taskname="lint" passthru="true">
<arg value="-l"/>
<target name="quick-build" <fileset dir="src">
depends="prepare,lint,phpunit-no-coverage" <include name="*.php"/>
description="Performs a lint check and runs the tests (without generating code coverage reports)"/> </fileset>
</apply>
<apply executable="php" taskname="lint" passthru="true">
<arg value="-l"/>
<target name="static-analysis" <fileset dir="src">
depends="lint,phploc-ci,pdepend,phpcs-ci,phpcpd-ci" <include name="Query/*.php"/>
description="Performs static analysis" /> </fileset>
</apply>
<apply executable="php" taskname="lint" passthru="true">
<arg value="-l"/>
<!-- Adjust the threadCount attribute's value to the number of CPUs --> <fileset dir="src">
<target name="static-analysis-parallel" <include name="Query/Drivers/*.php"/>
description="Performs static analysis (executing the tools in parallel)"> </fileset>
<parallel threadCount="2"> </apply>
<sequential> <apply executable="php" taskname="lint" passthru="true">
<antcall target="pdepend"/> <arg value="-l"/>
</sequential>
<antcall target="lint"/>
<antcall target="phpcpd-ci"/>
<antcall target="phpcs-ci"/>
<antcall target="phploc-ci"/>
</parallel>
</target>
<target name="clean" <fileset dir="tests">
unless="clean.done" <include name="*.php"/>
description="Cleanup build artifacts"> </fileset>
<delete dir="build/api"/> </apply>
<delete dir="build/coverage"/> <apply executable="php" taskname="lint" passthru="true">
<delete dir="build/logs"/> <arg value="-l"/>
<delete dir="build/pdepend"/>
<delete dir="build/phpdox"/>
<property name="clean.done" value="true"/>
</target>
<target name="prepare" <fileset dir="tests">
unless="prepare.done" <include name="core/*.php"/>
depends="clean" </fileset>
description="Prepare for build"> </apply>
<mkdir dir="build/api"/> <apply executable="php" taskname="lint" passthru="true">
<mkdir dir="build/coverage"/> <arg value="-l"/>
<mkdir dir="build/logs"/>
<mkdir dir="build/pdepend"/>
<mkdir dir="build/phpdox"/>
<property name="prepare.done" value="true"/>
</target>
<target name="lint" <fileset dir="tests">
unless="lint.done" <include name="databases/**/*.php"/>
description="Perform syntax check of sourcecode files"> </fileset>
<apply executable="php" taskname="lint"> </apply>
<arg value="-l" /> </parallel>
<fileset dir="src"> <property name="lint.done" value="true"/>
<include name="**/*.php" /> </target>
</fileset>
<fileset dir="tests"> <target name="phploc" unless="phploc.done" description="Measure project size using PHPLOC and print human readable output. Intended for usage on the command line.">
<include name="**/*.php" /> <exec executable="${phploc}" taskname="phploc" passthru="true">
</fileset> <arg value="--count-tests"/>
</apply> <arg path="src"/>
<arg path="tests"/>
</exec>
<property name="lint.done" value="true"/> <property name="phploc.done" value="true"/>
</target> </target>
<target name="phploc" <target name="phploc-ci" unless="phploc.done" depends="prepare" description="Measure project size using PHPLOC and log result in CSV and XML format. Intended for usage within a continuous integration environment.">
unless="phploc.done" <exec executable="${phploc}" taskname="phploc" passthru="true">
description="Measure project size using PHPLOC and print human readable output. Intended for usage on the command line."> <arg value="--count-tests"/>
<exec executable="${phploc}" taskname="phploc"> <arg value="--log-csv"/>
<arg value="--count-tests" /> <arg path="build/logs/phploc.csv"/>
<arg path="src" /> <arg value="--log-xml"/>
<arg path="tests" /> <arg path="build/logs/phploc.xml"/>
</exec> <arg path="src"/>
<arg path="tests"/>
</exec>
<property name="phploc.done" value="true"/> <property name="phploc.done" value="true"/>
</target> </target>
<target name="phploc-ci" <target name="pdepend" unless="pdepend.done" depends="prepare" description="Calculate software metrics using PHP_Depend and log result in XML format. Intended for usage within a continuous integration environment.">
unless="phploc.done" <exec executable="${pdepend}" taskname="pdepend" passthru="true">
depends="prepare" <arg value="--jdepend-xml=build/logs/jdepend.xml"/>
description="Measure project size using PHPLOC and log result in CSV and XML format. Intended for usage within a continuous integration environment."> <arg value="--jdepend-chart=build/pdepend/dependencies.svg"/>
<exec executable="${phploc}" taskname="phploc"> <arg value="--overview-pyramid=build/pdepend/overview-pyramid.svg"/>
<arg value="--count-tests" /> <arg path="src"/>
<arg value="--log-csv" /> </exec>
<arg path="build/logs/phploc.csv" />
<arg value="--log-xml" />
<arg path="build/logs/phploc.xml" />
<arg path="src" />
<arg path="tests" />
</exec>
<property name="phploc.done" value="true"/> <property name="pdepend.done" value="true"/>
</target> </target>
<target name="pdepend" <target name="phpcpd" unless="phpcpd.done" description="Find duplicate code using PHPCPD and print human readable output. Intended for usage on the command line before committing.">
unless="pdepend.done" <exec executable="${phpcpd}" taskname="phpcpd" passthru="true">
depends="prepare" <arg path="src"/>
description="Calculate software metrics using PHP_Depend and log result in XML format. Intended for usage within a continuous integration environment."> </exec>
<exec executable="${pdepend}" taskname="pdepend">
<arg value="--jdepend-xml=build/logs/jdepend.xml" />
<arg value="--jdepend-chart=build/pdepend/dependencies.svg" />
<arg value="--overview-pyramid=build/pdepend/overview-pyramid.svg" />
<arg path="src" />
</exec>
<property name="pdepend.done" value="true"/> <property name="phpcpd.done" value="true"/>
</target> </target>
<target name="phpcs" <target name="phpcpd-ci" unless="phpcpd.done" depends="prepare" description="Find duplicate code using PHPCPD and log result in XML format. Intended for usage within a continuous integration environment.">
unless="phpcs.done" <exec executable="${phpcpd}" taskname="phpcpd" passthru="true">
description="Find coding standard violations using PHP_CodeSniffer and print human readable output. Intended for usage on the command line before committing."> <arg value="--log-pmd"/>
<exec executable="${phpcs}" taskname="phpcs"> <arg path="build/logs/pmd-cpd.xml"/>
<arg value="--standard=PSR2" /> <arg path="src"/>
<arg value="--extensions=php" /> </exec>
<arg value="--ignore=autoload.php" />
<arg path="src" />
<arg path="tests" />
</exec>
<property name="phpcs.done" value="true"/> <property name="phpcpd.done" value="true"/>
</target> </target>
<target name="phpcs-ci" <target name="phpunit" unless="phpunit.done" depends="prepare" description="Run unit tests with PHPUnit">
unless="phpcs.done" <exec executable="${phpunit}" logoutput="true" passthru="true" checkreturn="true" taskname="phpunit">
depends="prepare" <arg value="--configuration" />
description="Find coding standard violations using PHP_CodeSniffer and log result in XML format. Intended for usage within a continuous integration environment."> <arg path="build/phpunit.xml" />
<exec executable="${phpcs}" output="/dev/null" taskname="phpcs"> </exec>
<arg value="--report=checkstyle" />
<arg value="--report-file=build/logs/checkstyle.xml" />
<arg value="--standard=PSR2" />
<arg value="--extensions=php" />
<arg value="--ignore=autoload.php" />
<arg path="src" />
<arg path="tests" />
</exec>
<property name="phpcs.done" value="true"/> <property name="phpunit.done" value="true" />
</target> </target>
<target name="phpcpd" <target name="phpunit-no-coverage" depends="prepare" unless="phpunit.done" description="Run unit tests with PHPUnit (without generating code coverage reports)">
unless="phpcpd.done" <exec executable="${phpunit}" passthru="true" taskname="phpunit">
description="Find duplicate code using PHPCPD and print human readable output. Intended for usage on the command line before committing."> <arg value="--configuration" />
<exec executable="${phpcpd}" taskname="phpcpd"> <arg path="build/phpunit.xml" />
<arg path="src" /> <arg value="--no-coverage" />
</exec> </exec>
<property name="phpcpd.done" value="true"/> <property name="phpunit.done" value="true" />
</target> </target>
<target name="phpcpd-ci" <target name="phpdox" unless="phpdox.done" depends="phploc-ci,phpunit" description="Generate project documentation using phpDox">
unless="phpcpd.done" <exec executable="${phpdox}" dir="build" taskname="phpdox" passthru="true"/>
depends="prepare"
description="Find duplicate code using PHPCPD and log result in XML format. Intended for usage within a continuous integration environment.">
<exec executable="${phpcpd}" taskname="phpcpd">
<arg value="--log-pmd" />
<arg path="build/logs/pmd-cpd.xml" />
<arg path="src" />
</exec>
<property name="phpcpd.done" value="true"/> <property name="phpdox.done" value="true"/>
</target> </target>
<target name="phpunit" <target name="sonar" depends="phpunit">
unless="phpunit.done" <exec executable="${sonar}" taskname="sonar" passthru="true"/>
depends="prepare" <property name="sonar.done" value="true"/>
description="Run unit tests with PHPUnit"> </target>
<exec executable="${phpunit}" resultproperty="result.phpunit" taskname="phpunit">
<arg value="--configuration"/>
<arg path="build/phpunit.xml"/>
</exec>
<property name="phpunit.done" value="true"/>
</target>
<target name="phpunit-no-coverage"
unless="phpunit.done"
depends="prepare"
description="Run unit tests with PHPUnit (without generating code coverage reports)">
<exec executable="${phpunit}" failonerror="true" taskname="phpunit">
<arg value="--configuration"/>
<arg path="build/phpunit.xml"/>
<arg value="--no-coverage"/>
</exec>
<property name="phpunit.done" value="true"/>
</target>
<target name="phpdox"
unless="phpdox.done"
depends="phploc-ci,phpcs-ci,phpunit"
description="Generate project documentation using phpDox">
<exec executable="${phpdox}" dir="build" taskname="phpdox"/>
<property name="phpdox.done" value="true"/>
</target>
<target name="sonar"
depends="phpunit">
<exec executable="${sonar}" taskname="sonar"/>
<property name="sonar.done" value="true"/>
</target>
<target name="-check-failure">
<fail message="PHPUnit did not finish successfully">
<condition>
<not>
<equals arg1="${result.phpunit}" arg2="0"/>
</not>
</condition>
</fail>
</target>
</project> </project>