Skip to content

Commit

Permalink
Make testMatrix task emit all check tasks, rather than filtering out …
Browse files Browse the repository at this point in the history
…up-to-date tasks (#3287)
  • Loading branch information
rnorth committed Sep 29, 2020
1 parent 149badf commit 63e2c49
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions gradle/ci-support.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,7 @@ task testMatrix {

dependsOn(checkTasks)
doLast {
// Obtain a list of check tasks that are not up-to-date, i.e.
// the ones which Gradle cannot find a cached output for.
def checkTaskPaths = checkTasks
.findAll { !it.state.upToDate }
.collect { it.path }

println(JsonOutput.toJson(checkTaskPaths))
Expand Down

0 comments on commit 63e2c49

Please sign in to comment.