我有两个服务器,一个用于开发,一个用于Jenkins。我在开发中使用PHP 7.0.9,在Jenkins上使用PHP 7.0.9和Xdebug。当我尝试构建时,第一步是在运行所有测试之前运行composer并安装项目的依赖项。奇怪的是它找到了作曲家。. json在我的项目根目录,但随后继续运行我在Jenkins服务器上使用的composer.json
(在Jenkins用户的主目录中),最终没有安装任何东西。
这是我的完整build.xml
:
<?xml version="1.0" encoding="UTF-8"?>
<project name="GAPCMS" default="full-build">
<!-- By default, we assume all tools to be on the $PATH -->
<property name="pdepend" value="pdepend"/>
<property name="phpcpd" value="phpcpd"/>
<property name="phpcs" value="phpcs"/>
<property name="phpdox" value="phpdox"/>
<property name="phploc" value="phploc"/>
<property name="phpmd" value="phpmd"/>
<property name="phpunit" value="phpunit"/>
<!-- 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="phpdox" value="${basedir}/build/tools/phpdox.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"/> -->
<!-- Use this when the tools are managed by Composer in ${basedir}/vendor/bin
<property name="pdepend" value="${basedir}/vendor/bin/pdepend"/>
<property name="phpcpd" value="${basedir}/vendor/bin/phpcpd"/>
<property name="phpcs" value="${basedir}/vendor/bin/phpcs"/>
<property name="phpdox" value="${basedir}/vendor/bin/phpdox"/>
<property name="phploc" value="${basedir}/vendor/bin/phploc"/>
<property name="phpmd" value="${basedir}/vendor/bin/phpmd"/>
<property name="phpunit" value="${basedir}/vendor/bin/phpunit"/> -->
<property name="src.dir" location="src" />
<property name="build.dir" location="bin" />
<target name="composer" description="Installing composer dependencies">
<exec executable="composer" failonerror="true">
<arg value="install" />
<arg value="-d" />
<arg path="${basedir}/src" />
<arg value="--no-dev" />
<arg value="--prefer-dist" />
<arg value="--no-progress" />
<arg value="--no-interaction" />
<arg value="--no-scripts" />
<arg value="--optimize-autoloader" />
<arg value="-vvv" />
</exec>
</target>
<target name="full-build"
depends="prepare,composer,static-analysis,phpunit,phpdox,-check-failure"
description="Performs static analysis, runs the tests, and generates project documentation"/>
<target name="full-build-parallel"
depends="prepare,composer,static-analysis-parallel,phpunit,phpdox,-check-failure"
description="Performs static analysis (executing the tools in parallel), runs the tests, and generates project documentation"/>
<target name="quick-build"
depends="prepare,composer,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}/build/phpdox"/>
<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"/>
<mkdir dir="${basedir}/build/phpdox"/>
<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}/src">
<include name="**/*.php" />
<modified />
</fileset>
<fileset dir="${basedir}/tests">
<include name="**/*.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}/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}/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">
<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="${basedir}/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">
<arg path="${basedir}/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">
<arg path="${basedir}/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}/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}" output="/dev/null" 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}/src" />
<arg path="${basedir}/tests" />
</exec>
<property name="phpcs.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}/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}/src" />
</exec>
<property name="phpcpd.done" value="true"/>
</target>
<target name="phpunit"
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}/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="${basedir}/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,phpmd-ci"
description="Generate project documentation using phpDox">
<exec executable="${phpdox}" dir="${basedir}/build" taskname="phpdox"/>
<property name="phpdox.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>
下面是Jenkins控制台在构建时的输出:
19:54:43 composer:
19:54:43 [exec] Changed CWD to /var/lib/jenkins/workspace/GAP CMS Beta/src
19:54:43 [exec] Reading ./composer.json
19:54:43 [exec] Loading config file ./composer.json
19:54:43 [exec] Checked CA file /etc/pki/tls/certs/ca-bundle.crt: valid
19:54:43 [exec] Executing command (/var/lib/jenkins/workspace/GAP CMS Beta/src): git branch --no-color --no-abbrev -v
19:54:43 [exec] Executing command (/var/lib/jenkins/workspace/GAP CMS Beta/src): git describe --exact-match --tags
19:54:43 [exec] Executing command (/var/lib/jenkins/workspace/GAP CMS Beta/src): git log --pretty="%H" -n1 HEAD
19:54:43 [exec] Reading /var/lib/jenkins/.composer/composer.json
19:54:43 [exec] Loading config file /var/lib/jenkins/.composer/composer.json
19:54:43 [exec] Reading /var/lib/jenkins/workspace/GAP CMS Beta/src/vendor/composer/installed.json
19:54:43 [exec] Reading /var/lib/jenkins/.composer/vendor/composer/installed.json
19:54:43 [exec] Running 1.2.0 (2016-07-19 01:28:52) with PHP 7.0.9 on Linux / 4.4.11-23.53.amzn1.x86_64
19:54:43 [exec] You are running composer with xdebug enabled. This has a major impact on runtime performance. See https://getcomposer.org/xdebug
19:54:43 [exec] Reading ./composer.lock
19:54:43 [exec] Loading composer repositories with package information
19:54:43 [exec] Installing dependencies (including require-dev) from lock file
19:54:43 [exec] Reading ./composer.lock
19:54:43 [exec] Resolving dependencies through SAT
19:54:43 [exec] Dependency resolution completed in 0.001 seconds
19:54:43 [exec] Analyzed 67 packages to resolve dependencies
19:54:43 [exec] Analyzed 77 rules to resolve dependencies
19:54:43 [exec] Nothing to install or update
19:54:43 [exec] Generating autoload files
工作目录在日志中看起来很好,并且它似乎加载了正确的编写器。json,但后来它切换到我的/var/lib/jenkins/.composer/composer.json
,我不知道为什么它不使用正确的文件。我也没有看到任何选项可以强制composer使用该文件。
还有一条信息。这是作曲家。
{
"repositories": [
{
"type": "git",
"url": "https://github.com/spacenate/surveygizmo-api-php"
}
],
"require": {
"spacenate/surveygizmo-api-php": "dev-master"
},
"autoload": {
"psr-0": { "": "src/" }
}
}
这是作曲家。我已经为jenkins服务器上的jenkins用户设置了json:
# /var/lib/jenkins/.composer
{
"require": {
"phpunit/phpunit": "5.5.*",
"squizlabs/php_codesniffer": "*",
"pdepend/pdepend": "*",
"phpmd/phpmd": "*",
"sebastian/phpcpd": "*",
"phploc/phploc": "^3.0"
}
}
终于搞定了。没有足够的文档在那里的詹金斯/PHP所以希望,这将帮助其他人。我将vendor
目录添加到.gitignore
。由于vendor
目录是我的repo的一部分,Jenkins正在拉它,composer认为一切都很好。其中一个依赖项是子模块,因此该文件夹是空的,并且在需要/包含它时导致了问题。
修复我的repo,我做了一个git rm和rm -rf
在供应商目录。在Git的推动下,编译器部分就可以安装所有需要的依赖了!