我已经配置并集成了Jenkins和Gerrit与Gerrit触发器插件,并且作为Jenkins构建后任务的一部分,我正在执行以下脚本:
/opt/sputnik/bin/sputnik --conf /opt/sputnik/myconf.properties --changeId $GERRIT_CHANGE_ID --revisionId $GERRIT_PATCHSET_REVISION
echo "exit 0 workaround"下面是人造卫星是什么:https://github.com/TouK/sputnik
但我的产出如下:
[PostBuildScript] - Execution post build scripts.
[PostBuildScript] - Resolving environment variables for the script content.
[PostBuildScript] - Evaluating the script:
/var/lib/jenkins/sputnik/bin/sputnik --conf /var/lib/jenkins/sputnik/gerrit.properties --changeId $GERRIT_CHANGE_ID --revisionId $GERRIT_PATCHSET_REVISION
echo "exit 0 workaround"
[project1] $ /bin/sh -xe /tmp/hudson6990025050616459512.sh
+ /var/lib/jenkins/sputnik/bin/sputnik --conf /var/lib/jenkins/sputnik/gerrit.properties --changeId --revisionId
Sputnik version 1.7.0
Sputnik - review your Gerrit patchset with Checkstyle, PMD and FindBugs
usage: sputnik [--apiKey <apiKey>] [--buildId <buildId>] [--changeId <changeId>] --conf <conf> [--pullRequestId
<pullRequestId>] [--revisionId <revisionId>]
--apiKey <apiKey> Optional API key for using Sputnik for Github
--buildId <buildId> Optional build id for using Sputnik for Github
--changeId <changeId> Gerrit change id
--conf <conf> Configuration properties file
--pullRequestId <pullRequestId> Stash pull request id
--revisionId <revisionId> Gerrit revision id
Missing argument for option: changeId
Build step 'Execute a set of scripts' changed build result to FAILURE
Build step 'Execute a set of scripts' marked build as failure
Finished: FAILURE发布于 2016-06-07 12:56:20
这个问题是由这个安全补丁 for Jenkins引起的--它适用于1.651.2、2.3和更高版本。这是一个受影响插件列表。
基本上,它禁止插件注入未显式配置的构建参数,因此您的Jenkins不了解$GERRIT_CHANGE_ID和$GERRIT_PATCHSET_REVISION。
作为解决办法,您可以将以下JAVA_ARG添加到jenkins配置中
-Dhudson.model.ParametersAction.keepUndefinedParameters=true
然而,我发现这个解决方案太有侵略性,所以我想出了另一个解决方案。只需将这些字符串参数添加到作业配置:
就是这样。现在您的配置应该如下所示:

https://stackoverflow.com/questions/36951839
复制相似问题