我正在尝试在 Jenkins 中使用 Php Code Sniffer 插件。它会生成一个 checkstyle.xml 文件,但里面没有错误,我知道我应该有。
这是我的 checkstyle.xml 的包含:
<?xml version="1.0" encoding="UTF-8"?>
<checkstyle version="1.5.0RC2">
</checkstyle>
我的 Jenkins 的 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 文件中获得错误结果?
谢谢。