- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for addTaskReports (0.06 seconds)
-
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) -
build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/testcleanup/TestFilesCleanupService.kt
} fun addTestBinaryResultsDir(testTaskPath: String, binaryResultsDir: Provider<File>) { testTaskPathToBinaryResultsDir[testTaskPath] = binaryResultsDir } fun addTaskReports(taskPath: String, reports: Collection<FileLocationProvider>) { val reportLocations = reports.map(::ReportLocation) if (resolveReportLocationsOnAdd) { reportLocations.forEach { it.resolve() }Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Feb 11 11:05:07 GMT 2026 - 14.3K bytes - Click Count (1) -
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)