Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for addTaskReports (0.04 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. build-logic/buildquality/src/main/kotlin/gradlebuild.configure-ci-artifacts.gradle.kts

            testFilesCleanupService.get().addTaskReports(path, validatePluginsReports())
        }
    
        project.tasks.withType<FindBrokenInternalLinks>().configureEach {
            testFilesCleanupService.get().addTaskReports(path, findBrokenInternalLinksReports())
        }
        project.tasks.withType<DistributionTest>().configureEach {
            testFilesCleanupService.get().addTaskReports(path, distributionReports())
        }
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Feb 11 09:36:42 GMT 2026
    - 2.7K bytes
    - Click Count (0)
  2. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.ci-reporting.gradle.kts

            if (this is Test) {
                testFilesCleanupService.addTestBinaryResultsDir(path, binaryResultsDirectory.asFile)
                testFilesCleanupService.addTaskReports(path, traceJson())
            }
            if (this is Reporting<*>) {
                testFilesCleanupService.addTaskReports(path, genericHtmlReports())
            }
        }
    }
    
    // e.g. build/test-results/embeddedIntegTest/trace.json
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Feb 11 09:36:42 GMT 2026
    - 3.1K bytes
    - Click Count (0)
Back to Top