- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 post always 阶段从声明性管道调用此函数:
import groovy.json.JsonSlurper
import com.cloudbees.groovy.cps.NonCPS
@NonCPS
def call(){
String path = "C:\\Users\\tests"
String jsonFileToRead = new File(path).listFiles().findAll { it.name.endsWith(".json") }
.sort { -it.lastModified() }?.head()
JsonSlurper jsonSlurper = new JsonSlurper()
Map data = jsonSlurper.parse(new File(jsonFileToRead))
Map testResults = [:]
int totalTests = data.results.size()
int totalFailures = 0
int totalSuccess = 0
def results = []
//Map test names and results from json file
for (int i = 0; i < data.results.size(); i++) {
testResults.put(i, [data['results'][i]['TestName'], data['results'][i]['result']])
}
//Iterate through the map and send to slack test name and results and then a summary of the total tests, failures and success
for (test in testResults.values()){
String testName = test[0]
String testResult = test[1]
String msg = "Test: " + testName + " Result: " + testResult
if(testResult == "fail")
{
totalFailures++
println msg
try {
slackSend color : "danger", message: "${msg}", channel: '#somechannel'
} catch (Throwable e) {
error "Caught ${e.toString()}"
}
}
else if(testResult == "pass")
{
totalSuccess++
println msg
try {
slackSend color : "good", message: "${msg}", channel: '#somechannel'
} catch (Throwable e) {
error "Caught ${e.toString()}"
}
}
else
{
println "Unknown test result: " + testResult
}
}
def resultsSummary = "Total Tests: " + totalTests + " Total Failures: " + totalFailures + " Total Success: " + totalSuccess
slackSend color : "good", message: "${resultsSummary}", channel: '#somechannel'
println resultsSummary
但我一直收到此错误,即使我使用的是@NonCPS。我有点困惑,好像我注释掉了调用 slackSend 功能的 3 行,一切正常,我在控制台中输出了正确的消息,管道成功完成,但如果我像现在这样运行它,我什至会收到此错误如果我只是尝试发送摘要并注释掉其他 2 个 slackSend:
13:53:23 [Pipeline] echo
13:53:23 Test: triggers_attackMove Result: pass
13:53:23 [Pipeline] slackSend
13:53:23 Slack Send Pipeline step running, values are - baseUrl: <empty>, teamDomain: forgottenempires, channel: #test_harness_logs_phoenix, color: good, botUser: true, tokenCredentialId: Slack_bot_test, notifyCommitters: false, iconEmoji: :goose, username: Jenkins Wizard, timestamp: <empty>
13:53:23 [Pipeline] error
13:53:24 [Pipeline] }
13:53:24 [Pipeline] // script
13:53:24 Error when executing always post condition:
13:53:24 hudson.AbortException: Caught CpsCallableInvocation{methodName=slackSend, call=com.cloudbees.groovy.cps.impl.CpsFunction@149776fc, receiver=null, arguments=[org.jenkinsci.plugins.workflow.cps.DSL$ThreadTaskImpl@25def8]}
13:53:24 at org.jenkinsci.plugins.workflow.steps.ErrorStep$Execution.run(ErrorStep.java:64)
13:53:24 at org.jenkinsci.plugins.workflow.steps.ErrorStep$Execution.run(ErrorStep.java:51)
13:53:24 at org.jenkinsci.plugins.workflow.steps.SynchronousStepExecution.start(SynchronousStepExecution.java:37)
13:53:24 at org.jenkinsci.plugins.workflow.cps.DSL.invokeStep(DSL.java:322)
13:53:24 at org.jenkinsci.plugins.workflow.cps.DSL.invokeMethod(DSL.java:196)
enter code here
....
我尝试使用@NonCPS 装饰器将 slackSend 功能带到另一个函数,并从函数内部调用它,但我一直遇到同样的错误,老实说,我很安静地失去了这一点
最佳答案
slackSend
是一个管道步骤,因此不能从 @NonCPS
上下文调用。只有少数异常(exception),例如 echo
,它在 @NonCPS
上下文中工作。参见 Use of Pipeline steps from @NonCPS了解详情。
在这种情况下,我的方法是从调用步骤的函数中删除 @NonCPS
,并仅将实际需要 @NonCPS
的代码移动到单独的 @NonCPS
函数。在您的情况下,这可能只是使用 File
和 JsonSlurper
类的代码。
此外,我们需要确保 @NonCPS
函数返回的任何数据都是可序列化的。 JsonSlurper
返回一个不是的 LazyMap
。正如 OP 评论的那样,最简单的解决方案是使用 JsonSlurperClassic
代替,它返回一个常规的、可序列化的 Map
(或者一个 List
如果根是一个数组)。
@NonCPS
Map readData(){
String path = "C:\\Users\\tests"
String jsonFileToRead = new File(path).listFiles().findAll { it.name.endsWith(".json") }
.sort { -it.lastModified() }?.head()
def jsonSlurper = new JsonSlurperClassic()
return jsonSlurper.parse(new File(jsonFileToRead))
}
// Note: Must not be @NonCPS because pipeline steps are called!
def call(){
Map data = readData()
Map testResults = [:]
int totalTests = data.results.size()
int totalFailures = 0
int totalSuccess = 0
def results = []
//Map test names and results from json file
for (int i = 0; i < data.results.size(); i++) {
testResults.put(i, [data['results'][i]['TestName'], data['results'][i]['result']])
}
//Iterate through the map and send to slack test name and results and then a summary of the total tests, failures and success
for (test in testResults.values()){
String testName = test[0]
String testResult = test[1]
String msg = "Test: " + testName + " Result: " + testResult
if(testResult == "fail")
{
totalFailures++
println msg
try {
slackSend color : "danger", message: "${msg}", channel: '#somechannel'
} catch (Throwable e) {
error "Caught ${e.toString()}"
}
}
else if(testResult == "pass")
{
totalSuccess++
println msg
try {
slackSend color : "good", message: "${msg}", channel: '#somechannel'
} catch (Throwable e) {
error "Caught ${e.toString()}"
}
}
else
{
println "Unknown test result: " + testResult
}
}
def resultsSummary = "Total Tests: " + totalTests + " Total Failures: " + totalFailures + " Total Success: " + totalSuccess
slackSend color : "good", message: "${resultsSummary}", channel: '#somechannel'
println resultsSummary
}
关于jenkins - 在 Jenkins 管道中发送松弛消息时 cps 不匹配,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/74834269/
我想创建一个 Jenkins 工作来启动其他 Jenkins 工作。这很容易,因为 Jenkins 模板项目插件允许我们创建“使用另一个项目的构建器”类型的构建步骤。然而,让我的情况更难的是我必须在其
我有一个简单的Windows批处理命令(robocopy),该命令返回零错误,但在Jenkins中始终被标记为失败。我想知道为什么? D:\ Jenkins \ jobs \ Jenkins Conf
我有两个 Jenkins 工作 - Jenkins Job1 和 Jenkins Job2。 我有多个应用程序并使用相同的 Jenkins 来构建应用程序。如果相同的应用程序在 Jenkins 中运行
我找不到这两者之间的区别。这些是相同的还是不同的。 最佳答案 第一个区别是支持(正如其他人所提到的)。 CloudBees 提供企业级支持以及经过全面审查和测试的 Jenkins 版本,该版本将在各种
是否可以指定在多次触发作业(A)的情况下,将先前的作业从队列中删除,并且如果有足够的可用插槽,则仅将最新的作业留在队列中或启动? 提前致谢! 最佳答案 您可以使用通过Groovy Script Plu
我有2位Jenkins主持人,并且希望First Jenkins在第一个结果的基础上基于“SUCCESS”触发远程Jenkins上的工作。 我看过各种插件,但它们似乎都表明一个Jenkins主机,可以
我的 jenkinsfile 有几个参数,每次我更新参数(例如删除或添加新输入)并将更改提交到我的 SCM 时,我没有在 jenkins 中看到相应更新的作业输入屏幕,我必须运行执行,取消它,然后查看
有没有办法在构建完成后触发相同的工作。我有一项工作需要运行,直到我手动中止它。有没有办法做到这一点? 最佳答案 最简单的方法是添加一个构建相同项目的后期构建步骤。将“构建后操作”-“构建其他项目”-“
我在 Linux 家中的特定用户下有工作/.jenkins 文件夹。我想与另一个用户一起启动 Jenkins,但重新使用另一个用户的 .jenkins 文件夹。我怎样才能做到这一点? Jenkins
我是 Jenkins 的新手,我不确定这是否可行,但我想设置一个 Web 界面,人们可以在其中单击“开始作业”,这将告诉 Jenkins 开始特定的构建作业。 Jenkins 是否有允许此类操作的网络
如何获取 Jenkins 凭证变量,即“mysqlpassword”,可供 Jenkins 声明性管道的所有阶段访问? 下面的代码片段工作正常并打印我的凭据。 node { stage('Gett
如何获取 Jenkins 凭证变量,即“mysqlpassword”,可供 Jenkins 声明性管道的所有阶段访问? 下面的代码片段工作正常并打印我的凭据。 node { stage('Gett
如何将构建参数从一个项目传递到另一个项目? 我们在 Jenkins 用户界面中是否有任何配置,可以在完成一个构建项目后将构建参数传递给另一个项目? 我能够触发另一个项目,但无法传递构建参数。我们是否有
我正在 Jenkins 中构建一个项目,并希望在它之后立即启动测试,请稍候 直到测试完成,然后运行另一个作业来分析结果。测试系统是一个封闭的系统(我不能修改它)所以为了检查测试是否完成我需要每 X 秒
我创建了一个测试 jenkins 作业管道。此作业具有字符串参数 - 'testVar' Jenkins文件代码: println("env.TESTVAR=" + env.TESTVAR) prin
我的 Jenkins 工作“构建”配置有 3 执行 shell - 构建任务 2 构建后操作 有没有办法获取每个构建任务和构建后操作的运行时间? 最佳答案 不直接,这就是为什么: 我使用 a Jenk
是否有任何适用于 Jenkins 的插件可以为 Jenkins 提供键值存储选项?功能接近的插件是凭据插件。目标是拥有一个存储全局配置参数的插件,并且此参数可用于 Jenkins 作业。 最佳答案 转
默认情况下,Jenkins 是否会保留每个构建中生成的所有构建和工件。或者它会在一段时间后删除它们。我知道我可以配置“丢弃旧版本”选项,但我想知道 Jenkins 的默认行为。 最佳答案 默认是保留所
Jenkins 构建中的每个文件参数“帮助文本”, Accepts a file submission from a browser as a build parameter. The uploade
情况:我在我的虚拟服务器上安装了 Jenkins 并设置了一个“自由式管道”。我通过 webhook push 将它连接到我的 github,它可以工作(当我推送到存储库时,在 jenkins 中启动
我是一名优秀的程序员,十分优秀!