Gradle:仅在任务失败时执行操作

问题描述 投票:8回答:1

我想打开检查失败时使用的几个“检查”和“测试”插件的报告文件。我知道无论原始任务是否执行,我都会执行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
    }
}

解释(据我所知):

  • qazxsw poi实际上是开放报告的任务。您可以忽略它实际执行的操作,但如果检查任务失败则应该执行该操作
  • showCheckStyleResultsInBrowser任务声明属性showCheckStyleResultsIfFailed并将其初始化为true。执行时,它会检查它是否仍然为真(这意味着检查未成功完成),如果是,则使用aCheckFailed打开报告。
  • showCheckStyleResultsInBrowser是进行实际检查的任务。我对它的结果很感兴趣。但是我不知道如何去做。因此,在checkstyleMain任务结束时,我将checkStyleMain属性设置为aCheckFailed,依赖于如果以前的检查都没有失败,则只执行最后一步的事实。
  • false将在showCheckStyleResultsIfFailed之后执行,无论checkstyleMain是什么。这样即使finalizedBy失败也会执行。它使用checkstyleMain属性来确定aCheckFailed是否成功完成。

如果我完成构建,这可以正常工作。但是如果我只是进行部分重建并且checkstyleMain任务没有运行,因为它的所有结果都已经是最新的,我最终得到checkstyleMain是真的,因为aCheckFailed没有运行,这使得它看起来好像实际上是出错。

那么,当且仅当checkstyleMain任务失败时,如何才能执行checkstyleMain任务?此外,我的解决方案感觉相当麻烦和黑客,即使它实现了它。有没有更简单的方法?

gradle build.gradle
1个回答
11
投票

您可以询问任务状态以确定它是否失败。

showCheckStyleResultsInBrowser
© www.soinside.com 2019 - 2024. All rights reserved.