我正在尝试在Jenkins中使用Php Code Sniffer插件。它生成了一个checkstyle.xml文件,但是里面没有错误,我知道应该有。
这是我的checkstyle.xml的内容:
<?xml version="1.0" encoding="UTF-8"?> <checkstyle version="1.5.0RC2"> </checkstyle>
我的詹金斯的build.xml文件是:
<target name="phpcs" > <exec executable="phpcs"> <arg line="--report=checkstyle --report-file=${project.basedir}/build/logs/checkstyle.xml --standard=Zend ${project.basedir}/*.php" /> </exec> </target>
当我在命令行中执行此操作时,我得到了不同的结果。我的命令:
phpcs --report=checkstyle --report-file=checkstyle.xml --standard=Zend *.php
它将生成没有错误的相同checkstyle.xml,以及包含错误的phpcs-checkstyle.tmp。
如何在checkstyle.xml文件中获取包含错误的结果?
谢谢。
我认为您的问题是您正遭受此错误的困扰:http : //pear.php.net/bugs/bug.php?id=19930
该错误仅出现在您使用的RC版本中。
恢复到当前的稳定版本(1.4.5)应该可以使您重新工作。