我想使用jenkins运行批处理。构建状态取决于在特定文件夹中创建的文件数。我的问题是如何根据创建的文件数管理Jenkins构建状态?
答案 0 :(得分:0)
如果不期望计数,您可以执行shell脚本来计算文件并返回1。
另一种方法是使用Text-finder Plugin在控制台日志中搜索模式。
Groovy Postbuild Plugin是另一种选择:
buildUnstable() - sets the build result to UNSTABLE.
如果您想使用CLI,可以使用以下命令:
java -jar jenkins-cli.jar -s http://...:8080/ set-build-result
Sets the result of the current build. Works only if invoked from within a build.