Skip to content

Commit

Permalink
undo check task fix
Browse files Browse the repository at this point in the history
  • Loading branch information
adam-enko committed Jun 19, 2024
1 parent f60a61a commit 748d56e
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 12 deletions.
6 changes: 0 additions & 6 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -92,12 +92,6 @@ fun includedBuildTasks(taskName: String, filter: (IncludedBuild) -> Boolean = {
.mapNotNull { it.task(":$taskName") }


tasks.check {
gradle.includedBuilds.forEach { ib ->
dependsOn(ib.task(":check"))
}
}

tasks.wrapper {
val gradleVersion = "8.7"
distributionUrl =
Expand Down
6 changes: 0 additions & 6 deletions dokka-integration-tests/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,3 @@ fun subprojectTasks(taskName: String): List<String> =
subprojects
.filter { it.getTasksByName(taskName, false).isNotEmpty() }
.map { ":${it.name}:$taskName" }

tasks.check {
subprojects.forEach { project ->
project.tasks.findByName("check")?.let { dependsOn(it) }
}
}

0 comments on commit 748d56e

Please sign in to comment.