Skip to content

Commit

Permalink
Add dummy tasks to get the build green.
Browse files Browse the repository at this point in the history
  • Loading branch information
big-andy-coates committed Oct 9, 2023
1 parent 119619a commit 3a4cba4
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -152,14 +152,17 @@ val benchmarkSmokeTest = tasks.register<JavaExec>("runBenchmarkSmokeTest") {
dependsOn(pullTask)
}

tasks.register("coveralls") {
// dummy
}

tasks.test {
dependsOn(runFunctionalTests, benchmarkSmokeTest)
}

// Dummy / empty tasks required to allow the repo to use the same standard GitHub workflows as other Creek repos:
tasks.register("coveralls")
tasks.register("cV")
tasks.register("publish")
tasks.register("closeAndReleaseStagingRepository")
tasks.register("publishPlugins")

// Below is required until the following is fixed in IntelliJ:
// https://youtrack.jetbrains.com/issue/IDEA-316081/Gradle-8-toolchain-error-Toolchain-from-executable-property-does-not-match-toolchain-from-javaLauncher-property-when-different
gradle.taskGraph.whenReady {
Expand Down

0 comments on commit 3a4cba4

Please sign in to comment.