Translated using Weblate (Russian)
[phpmyadmin.git] / build.xml
blob41ab34e7ece49d6a0c40ef71ee03b54434c26ee1
1 <?xml version="1.0" encoding="UTF-8"?>
3 <project name="phpMyAdmin" default="build" basedir=".">
4  <property name="source" value="."/>
5  <property name="source_comma_sep" value="."/>
6  <property environment="env"/>
7  <property name="env.PHPUNIT_XML" value="phpunit.xml.dist"/>
8  <property name="env.PHPUNIT_XML_NOCOVERAGE" value="phpunit.xml.nocoverage"/>
9  <property name="env.PHPUNIT_XML_HHVM" value="phpunit.xml.hhvm"/>
10  <property name="env.PHPUNIT_ARGS" value=""/>
12  <target name="clean" description="Clean up and create artifact directories">
13   <delete dir="${basedir}/build/api"/>
14   <delete dir="${basedir}/build/code-browser"/>
15   <delete dir="${basedir}/build/coverage"/>
16   <delete dir="${basedir}/build/logs"/>
17   <delete dir="${basedir}/build/pdepend"/>
19   <mkdir dir="${basedir}/build/api"/>
20   <mkdir dir="${basedir}/build/code-browser"/>
21   <mkdir dir="${basedir}/build/coverage"/>
22   <mkdir dir="${basedir}/build/logs"/>
23   <mkdir dir="${basedir}/build/pdepend"/>
24  </target>
26  <target name="phpunit" description="Run unit tests using PHPUnit and generates junit.xml and clover.xml">
27   <exec executable="${basedir}/vendor/bin/phpunit" failonerror="true">
28       <arg line="--configuration ${env.PHPUNIT_XML} ${env.PHPUNIT_ARGS}"/>
29   </exec>
30  </target>
32  <target name="phpunit-nocoverage" description="Run unit tests using PHPUnit and generates junit.xml">
33   <exec executable="${basedir}/vendor/bin/phpunit" failonerror="true">
34       <arg line="--configuration ${env.PHPUNIT_XML_NOCOVERAGE} ${env.PHPUNIT_ARGS}"/>
35   </exec>
36  </target>
38  <target name="phpunit-hhvm" description="Run unit tests using PHPUnit with HHVM specific config">
39   <exec executable="${basedir}/vendor/bin/phpunit" failonerror="true">
40       <arg line="--configuration ${env.PHPUNIT_XML_HHVM} ${env.PHPUNIT_ARGS}"/>
41   </exec>
42  </target>
44  <target name="pdepend" description="Generate jdepend.xml and software metrics charts using PHP_Depend">
45   <exec executable="pdepend">
46    <arg line="'--jdepend-xml=${basedir}/build/logs/jdepend.xml'
47               '--jdepend-chart=${basedir}/build/pdepend/dependencies.svg'
48               '--overview-pyramid=${basedir}/build/pdepend/overview-pyramid.svg'
49               ${source_comma_sep}" />
50   </exec>
51  </target>
53  <target name="phpmd" description="Generate pmd.xml using PHPMD">
54   <exec executable="phpmd">
55    <arg line="${source_comma_sep}
56               xml
57               codesize,design,naming,unusedcode
58               --exclude test,build,tcpdf,php-gettext,bfShapeFiles,PMAStandard,phpseclib,recaptchalib.php,swekey.php,vendor
59               --reportfile '${basedir}/build/logs/pmd.xml'" />
60   </exec>
61  </target>
63  <target name="phpcpd" description="Generate pmd-cpd.xml using PHPCPD">
64   <exec executable="phpcpd">
65    <arg line="--log-pmd '${basedir}/build/logs/pmd-cpd.xml'
66               --exclude test
67               --exclude PMAStandard
68               --exclude build
69               --exclude vendor
70               --exclude libraries/tcpdf
71               --exclude libraries/php-gettext
72               --exclude libraries/bfShapeFiles
73               --exclude libraries/phpseclib
74               --exclude libraries/plugins/auth/recaptchalib.php
75               --exclude libraries/plugins/auth/swekey/swekey.php
76               ${source}" />
77   </exec>
78  </target>
80  <target name="phploc" description="Generate phploc.csv">
81   <exec executable="phploc">
82    <arg line="--log-csv '${basedir}/build/logs/phploc.csv'
83               --exclude test
84               --exclude PMAStandard
85               --exclude build
86               --exclude vendor
87               --exclude libraries/tcpdf
88               --exclude libraries/php-gettext
89               --exclude libraries/bfShapeFiles
90               --exclude libraries/phpseclib
91               --exclude libraries/plugins/auth/recaptchalib.php
92               --exclude libraries/plugins/auth/swekey/swekey.php
93               ${source}" />
94   </exec>
95  </target>
97  <target name="phpcs" description="Generate checkstyle.xml using PHP_CodeSniffer excluding third party libraries">
98   <exec executable="phpcs">
99    <arg line="
100               --ignore=*/php-gettext/*,*/vendor/*,*/tcpdf/*,*/canvg/*,*/codemirror/*,*/openlayers/*,*/jquery/*,*/jqplot/*,*/build/*,*/bfShapeFiles/*,*/PMAStandard/*,*/phpseclib/*,*/recaptchalib.php,*/swekey.php
101               --report=checkstyle
102               --extensions=php
103               --report-file='${basedir}/build/logs/checkstyle.xml'
104               --standard=PMAStandard
105               ${source}" />
106   </exec>
107  </target>
109  <target name="phpdoc" description="Generate API documentation using PHPDocumentor">
110   <exec executable="phpdoc">
111    <arg line="-d ${source} -t '${basedir}/build/api'" />
112   </exec>
113  </target>
115  <target name="phpcb" description="Aggregate tool output with PHP_CodeBrowser">
116   <exec executable="phpcb">
117    <arg line="--log    '${basedir}/build/logs'
118               --source '${source}'
119               --output '${basedir}/build/code-browser'" />
120   </exec>
121  </target>
123 <target name="jshint" description="Javascript checks">
124   <apply executable="jshint" output="${basedir}/build/logs/jshint-jslint.xml"  parallel="true">
125    <arg line="--config ./.jshintrc --reporter=jslint" />
126    <fileset dir="${basedir}">
127     <include name="js/pmd/*.js" />
128     <include name="js/*.js" />
129     <include name="setup/*.js" />
130    </fileset>
131   </apply>
132  </target>
134  <target name="jshint-checkstyle" description="Javascript checks">
135   <apply executable="jshint" output="${basedir}/build/logs/jshint-checkstyle.xml"  parallel="true">
136    <arg line="--config ./.jshintrc --reporter=checkstyle" />
137    <fileset dir="${basedir}">
138     <include name="js/pmd/*.js" />
139     <include name="js/*.js" />
140     <include name="setup/*.js" />
141    </fileset>
142   </apply>
143  </target>
145  <target name="locales" description="Generate locales">
146    <exec executable="./scripts/generate-mo" failonerror="true">
147      <arg line="--quiet" />
148    </exec>
149  </target>
151  <target name="lint" description="Perform syntax check of sourcecode files">
152   <apply executable="php" failonerror="true" output="${basedir}/build/logs/lint.log" logError="true">
153    <arg value="-l" />
155    <fileset dir="${basedir}">
156     <include name="libraries/**/*.php" />
157     <include name="setup/**/*.php" />
158     <include name="test/**/*.php" />
159     <include name="*.php" />
160     <modified />
161    </fileset>
162   </apply>
163  </target>
165  <target name="build" depends="clean,phpunit,pdepend,phpmd,phpcpd,phpcs,phpdoc,phploc,phpcb,lint,jshint,locales"/>
166 </project>