azure-storage-php/build.xml

407 строки
16 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<project name="azure-storage-php" default="full-build">
<!-- By default, we assume all tools to be on the $PATH
<property name="pdepend" value="pdepend.bat"/>
<property name="phpcpd" value="phpcpd.bat"/>
<property name="phpcs" value="phpcs.bat"/>
<property name="phploc" value="phploc.bat"/>
<property name="phpmd" value="phpmd.bat"/>
<property name="phpunit" value="phpunit.bat"/>
<property name="phpdoc" value="phpdoc.bat"/> -->
<!-- Use this when the tools are located as PHARs in ${basedir}/build/tools
<property name="pdepend" value="${basedir}/build/tools/pdepend.phar"/>
<property name="phpcpd" value="${basedir}/build/tools/phpcpd.phar"/>
<property name="phpcs" value="${basedir}/build/tools/phpcs.phar"/>
<property name="phploc" value="${basedir}/build/tools/phploc.phar"/>
<property name="phpmd" value="${basedir}/build/tools/phpmd.phar"/>
<property name="phpunit" value="${basedir}/build/tools/phpunit.phar"/>
<property name="phpdoc" value="${basedir}/build/tools/phpDocumentator.phar"/> -->
<!-- Use this when the tools are managed by Composer in ${basedir}/vendor/bin -->
<property name="pdepend" value="${basedir}/vendor/bin/pdepend.bat"/>
<property name="phpcpd" value="${basedir}/vendor/bin/phpcpd.bat"/>
<property name="phpcs" value="${basedir}/vendor/bin/phpcs.bat"/>
<property name="phploc" value="${basedir}/vendor/bin/phploc.bat"/>
<property name="phpmd" value="${basedir}/vendor/bin/phpmd.bat"/>
<property name="phpunit" value="${basedir}/vendor/bin/phpunit.bat"/>
<property name="phpdoc" value="${basedir}/vendor/bin/phpdoc.bat"/>
<property name="php-cs-fixer" value="${basedir}/vendor/bin/php-cs-fixer.bat"/>
<target name="full-build"
depends="prepare,static-analysis,phpunit,doc,-check-failure"
description="Performs static analysis, runs the tests, and generates project documentation"/>
<target name="full-build-large-scale"
depends="prepare,static-analysis,phpunit-large-scale,doc,-check-failure"
description="Performs static analysis, runs the tests (including large scale tests), and generates project documentation"/>
<target name="full-build-parallel"
depends="prepare,static-analysis-parallel,phpunit,doc,-check-failure"
description="Performs static analysis (executing the tools in parallel), runs the tests, and generates project documentation"/>
<target name="quick-build"
depends="prepare,lint,phpunit-no-coverage"
description="Performs a lint check and runs the tests (without generating code coverage reports)"/>
<target name="static-analysis"
depends="lint,phploc-ci,pdepend,phpmd-ci,phpcs-ci,phpcpd-ci"
description="Performs static analysis" />
<!-- Adjust the threadCount attribute's value to the number of CPUs -->
<target name="static-analysis-parallel"
description="Performs static analysis (executing the tools in parallel)">
<parallel threadCount="2">
<sequential>
<antcall target="pdepend"/>
<antcall target="phpmd-ci"/>
</sequential>
<antcall target="lint"/>
<antcall target="phpcpd-ci"/>
<antcall target="phpcs-ci"/>
<antcall target="phploc-ci"/>
</parallel>
</target>
<target name="clean"
unless="clean.done"
description="Cleanup build artifacts">
<delete dir="${basedir}/build/api"/>
<delete dir="${basedir}/build/coverage"/>
<delete dir="${basedir}/build/logs"/>
<delete dir="${basedir}/build/pdepend"/>
<delete dir="${basedir}/doc"/>
<property name="clean.done" value="true"/>
</target>
<target name="prepare"
unless="prepare.done"
depends="clean"
description="Prepare for build">
<mkdir dir="${basedir}/build/api"/>
<mkdir dir="${basedir}/build/coverage"/>
<mkdir dir="${basedir}/build/logs"/>
<mkdir dir="${basedir}/build/pdepend"/>
<property name="prepare.done" value="true"/>
</target>
<target name="lint"
unless="lint.done"
description="Perform syntax check of sourcecode files">
<apply executable="php" taskname="lint">
<arg value="-l" />
<fileset dir="${basedir}">
<include name="azure-storage-blob/src/**/*.php" />
<include name="azure-storage-table/src/**/*.php" />
<include name="azure-storage-queue/src/**/*.php" />
<include name="azure-storage-file/src/**/*.php" />
<include name="azure-storage-common/src/**/*.php" />
<include name="tests/**/*.php" />
<modified />
</fileset>
</apply>
<property name="lint.done" value="true"/>
</target>
<target name="phploc"
unless="phploc.done"
description="Measure project size using PHPLOC and print human readable output. Intended for usage on the command line.">
<exec executable="${phploc}" taskname="phploc">
<arg value="--count-tests" />
<arg path="${basedir}/azure-storage-blob/src" />
<arg path="${basedir}/azure-storage-table/src" />
<arg path="${basedir}/azure-storage-queue/src" />
<arg path="${basedir}/azure-storage-file/src" />
<arg path="${basedir}/azure-storage-common/src" />
<arg path="${basedir}/tests" />
</exec>
<property name="phploc.done" value="true"/>
</target>
<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.">
<exec executable="${phploc}" taskname="phploc">
<arg value="--count-tests" />
<arg value="--log-csv" />
<arg path="${basedir}/build/logs/phploc.csv" />
<arg value="--log-xml" />
<arg path="${basedir}/build/logs/phploc.xml" />
<arg path="${basedir}/azure-storage-blob/src" />
<arg path="${basedir}/azure-storage-table/src" />
<arg path="${basedir}/azure-storage-queue/src" />
<arg path="${basedir}/azure-storage-file/src" />
<arg path="${basedir}/azure-storage-common/src" />
<arg path="${basedir}/tests" />
</exec>
<property name="phploc.done" value="true"/>
</target>
<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.">
<exec executable="${pdepend}" taskname="pdepend" dir="${basedir}">
<arg value="--jdepend-xml=${basedir}/build/logs/jdepend.xml" />
<arg value="--jdepend-chart=${basedir}/build/pdepend/dependencies.svg" />
<arg value="--overview-pyramid=${basedir}/build/pdepend/overview-pyramid.svg" />
<arg path="azure-storage-blob/src,azure-storage-table/src,azure-storage-queue/src,azure-storage-file/src,azure-storage-common/src" />
</exec>
<property name="pdepend.done" value="true"/>
</target>
<target name="phpmd"
unless="phpmd.done"
description="Perform project mess detection using PHPMD and print human readable output. Intended for usage on the command line before committing.">
<exec executable="${phpmd}" taskname="phpmd" dir="${basedir}">
<arg path="azure-storage-blob/src,azure-storage-table/src,azure-storage-queue/src,azure-storage-file/src,azure-storage-common/src" />
<arg value="text" />
<arg path="${basedir}/build/phpmd.xml" />
</exec>
<property name="phpmd.done" value="true"/>
</target>
<target name="phpmd-ci"
unless="phpmd.done"
depends="prepare"
description="Perform project mess detection using PHPMD and log result in XML format. Intended for usage within a continuous integration environment.">
<exec executable="${phpmd}" taskname="phpmd" dir="${basedir}">
<arg path="azure-storage-blob/src,azure-storage-table/src,azure-storage-queue/src,azure-storage-file/src,azure-storage-common/src" />
<arg value="xml" />
<arg path="${basedir}/build/phpmd.xml" />
<arg value="--reportfile" />
<arg path="${basedir}/build/logs/pmd.xml" />
</exec>
<property name="phpmd.done" value="true"/>
</target>
<target name="phpcs"
unless="phpcs.done"
description="Find coding standard violations using PHP_CodeSniffer and print human readable output. Intended for usage on the command line before committing.">
<exec executable="${phpcs}" taskname="phpcs">
<arg value="--standard=PSR2" />
<arg value="--extensions=php" />
<arg value="--ignore=autoload.php" />
<arg path="${basedir}/azure-storage-blob/src" />
<arg path="${basedir}/azure-storage-table/src" />
<arg path="${basedir}/azure-storage-queue/src" />
<arg path="${basedir}/azure-storage-file/src" />
<arg path="${basedir}/azure-storage-common/src" />
<arg path="${basedir}/tests" />
</exec>
<property name="phpcs.done" value="true"/>
</target>
<target name="phpcs-ci"
unless="phpcs.done"
depends="prepare"
description="Find coding standard violations using PHP_CodeSniffer and log result in XML format. Intended for usage within a continuous integration environment.">
<exec executable="${phpcs}" taskname="phpcs">
<arg value="--report=checkstyle" />
<arg value="--report-file=${basedir}/build/logs/checkstyle.xml" />
<arg value="--standard=PSR2" />
<arg value="--extensions=php" />
<arg value="--ignore=autoload.php" />
<arg path="${basedir}/azure-storage-blob/src" />
<arg path="${basedir}/azure-storage-table/src" />
<arg path="${basedir}/azure-storage-queue/src" />
<arg path="${basedir}/azure-storage-file/src" />
<arg path="${basedir}/azure-storage-common/src" />
<arg path="${basedir}/tests" />
</exec>
<property name="phpcs.done" value="true"/>
</target>
<target name="php-cs-fixer"
unless="php-cs-fixer.done"
description="Fix coding standard violations using php-cs-fixer and print human readable output. Intended for usage on the command line before committing.">
<exec executable="${php-cs-fixer}" taskname="php-cs-fixer">
<arg value="fix" />
<arg path="${basedir}/azure-storage-blob/src" />
<arg value="--rules=@PSR2" />
<arg value="--verbose" />
<arg value="--show-progress=estimating" />
</exec>
<exec executable="${php-cs-fixer}" taskname="php-cs-fixer">
<arg value="fix" />
<arg path="${basedir}/azure-storage-table/src" />
<arg value="--rules=@PSR2" />
<arg value="--verbose" />
<arg value="--show-progress=estimating" />
</exec>
<exec executable="${php-cs-fixer}" taskname="php-cs-fixer">
<arg value="fix" />
<arg path="${basedir}/azure-storage-queue/src" />
<arg value="--rules=@PSR2" />
<arg value="--verbose" />
<arg value="--show-progress=estimating" />
</exec>
<exec executable="${php-cs-fixer}" taskname="php-cs-fixer">
<arg value="fix" />
<arg path="${basedir}/azure-storage-file/src" />
<arg value="--rules=@PSR2" />
<arg value="--verbose" />
<arg value="--show-progress=estimating" />
</exec>
<exec executable="${php-cs-fixer}" taskname="php-cs-fixer">
<arg value="fix" />
<arg path="${basedir}/azure-storage-common/src" />
<arg value="--rules=@PSR2" />
<arg value="--verbose" />
<arg value="--show-progress=estimating" />
</exec>
<exec executable="${php-cs-fixer}" taskname="php-cs-fixer">
<arg value="fix" />
<arg path="${basedir}/tests" />
<arg value="--rules=@PSR2" />
<arg value="--verbose" />
<arg value="--show-progress=estimating" />
</exec>
<property name="php-cs-fixer.done" value="true"/>
</target>
<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.">
<exec executable="${phpcpd}" taskname="phpcpd">
<arg path="${basedir}/azure-storage-blob/src" />
<arg path="${basedir}/azure-storage-table/src" />
<arg path="${basedir}/azure-storage-queue/src" />
<arg path="${basedir}/azure-storage-file/src" />
<arg path="${basedir}/azure-storage-common/src" />
</exec>
<property name="phpcpd.done" value="true"/>
</target>
<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.">
<exec executable="${phpcpd}" taskname="phpcpd">
<arg value="--log-pmd" />
<arg path="${basedir}/build/logs/pmd-cpd.xml" />
<arg path="${basedir}/azure-storage-blob/src" />
<arg path="${basedir}/azure-storage-table/src" />
<arg path="${basedir}/azure-storage-queue/src" />
<arg path="${basedir}/azure-storage-file/src" />
<arg path="${basedir}/azure-storage-common/src" />
</exec>
<property name="phpcpd.done" value="true"/>
</target>
<target name="phpunit"
unless="phpunit.done"
depends="prepare"
description="Run unit tests and functional tests with PHPUnit">
<exec executable="${phpunit}" resultproperty="result.phpunit" taskname="phpunit">
<arg value="--configuration"/>
<arg path="${basedir}/phpunit.xml.dist"/>
<arg value="--exclude-group=large-scale"/>
</exec>
<property name="phpunit.done" value="true"/>
</target>
<target name="phpunit-large-scale"
unless="phpunit.done"
depends="prepare"
description="Run unit tests and functional tests with PHPUnit, including the large-scale tests">
<exec executable="${phpunit}" resultproperty="result.phpunit" taskname="phpunit">
<arg value="--configuration"/>
<arg path="${basedir}/phpunit.xml.dist"/>
</exec>
<property name="phpunit.done" value="true"/>
</target>
<target name="phpunit-no-coverage"
unless="phpunit.done"
depends="prepare"
description="Run unit tests and functional tests with PHPUnit (without generating code coverage reports)">
<exec executable="${phpunit}" failonerror="true" taskname="phpunit">
<arg value="--configuration"/>
<arg path="${basedir}/phpunit.xml.dist"/>
<arg value="--exclude-group=large-scale"/>
<arg value="--no-coverage"/>
</exec>
<property name="phpunit.done" value="true"/>
</target>
<target name="phpunit-ut"
unless="phpunit.done"
depends="prepare"
description="Run unit tests with PHPUnit">
<exec executable="${phpunit}" resultproperty="result.phpunit" taskname="phpunit">
<arg value="--configuration"/>
<arg path="${basedir}/phpunit.xml.dist"/>
<arg value="--testsuite=unit"/>
<arg value="--exclude-group=large-scale"/>
</exec>
<property name="phpunit-ut.done" value="true"/>
</target>
<target name="phpunit-ft"
unless="phpunit.done"
depends="prepare"
description="Run functional tests with PHPUnit">
<exec executable="${phpunit}" resultproperty="result-ft.phpunit" taskname="phpunit">
<arg value="--configuration"/>
<arg path="${basedir}/phpunit.xml.dist"/>
<arg value="--testsuite=functional"/>
<arg value="--exclude-group=large-scale"/>
</exec>
<property name="phpunit-ft.done" value="true"/>
</target>
<target name="doc"
unless="doc.done"
depends="prepare"
description="Generate project documentation using phpDocumentator">
<exec executable="${phpdoc}" taskname="phpdoc">
<arg value="-t" />
<arg path="${basedir}/doc"/>
<arg value="-d" />
<arg path="${basedir}/azure-storage-blob/src"/>
<arg value="-d" />
<arg path="${basedir}/azure-storage-table/src"/>
<arg value="-d" />
<arg path="${basedir}/azure-storage-queue/src"/>
<arg value="-d" />
<arg path="${basedir}/azure-storage-file/src"/>
<arg value="-d" />
<arg path="${basedir}/azure-storage-common/src"/>
<arg value="--visibility" />
<arg value="public,protected" />
<arg value="--template" />
<arg value="zend" />
</exec>
<property name="doc.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>