我想打开检查失败时使用的几个“检查”和“测试”插件的报告文件。我知道无论原始任务是否执行,我都会执行can use "finalizedBy执行其他任务。使用该知识,我尝试以下仅在相应任务(在此示例中为checkstyle
)失败时才打开报告:
task showCheckStyleResultsInBrowser(type: Exec) {
ext.htmlFileName = "main.html"
executable 'open'
args 'file:///' + checkstyleMain.reports.xml.destination.parent + "/" + ext.htmlFileName
}
task showCheckStyleResultsIfFailed {
ext.aCheckFailed = true
doLast {
if (ext.aCheckFailed) {
showCheckStyleResultsInBrowser.execute()
}
}
}
checkstyleMain {
finalizedBy 'showCheckStyleResultsIfFailed'
doLast {
// convert the xml output to html via https://stackoverflow.com/questions/20361942/generate-checkstyle-html-report-with-gradle
ant.xslt(in: reports.xml.destination,
style: new File('config/checkstyle/checkstyle-noframes-sorted.xsl'),
out: new File(reports.xml.destination.parent, showCheckStyleResultsInBrowser.htmlFileName))
showCheckStyleResultsIfFailed.aCheckFailed = false
}
}
解释(据我所知):
showCheckStyleResultsInBrowser
任务声明属性showCheckStyleResultsIfFailed
并将其初始化为true。执行时,它会检查它是否仍然为真(这意味着检查未成功完成),如果是,则使用aCheckFailed
打开报告。showCheckStyleResultsInBrowser
是进行实际检查的任务。我对它的结果很感兴趣。但是我不知道如何去做。因此,在checkstyleMain
任务结束时,我将checkStyleMain
属性设置为aCheckFailed
,依赖于如果以前的检查都没有失败,则只执行最后一步的事实。false
将在showCheckStyleResultsIfFailed
之后执行,无论checkstyleMain
是什么。这样即使finalizedBy
失败也会执行。它使用checkstyleMain
属性来确定aCheckFailed
是否成功完成。如果我完成构建,这可以正常工作。但是如果我只是进行部分重建并且checkstyleMain任务没有运行,因为它的所有结果都已经是最新的,我最终得到checkstyleMain
是真的,因为aCheckFailed
没有运行,这使得它看起来好像实际上是出错。
那么,当且仅当checkstyleMain任务失败时,如何才能执行checkstyleMain
任务?此外,我的解决方案感觉相当麻烦和黑客,即使它实现了它。有没有更简单的方法?
您可以询问任务状态以确定它是否失败。
showCheckStyleResultsInBrowser