Skip to content

Commit 63e2c49

Browse files
authored
Make testMatrix task emit all check tasks, rather than filtering out up-to-date tasks (#3287)
1 parent 149badf commit 63e2c49

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

gradle/ci-support.gradle

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,7 @@ task testMatrix {
99

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

1815
println(JsonOutput.toJson(checkTaskPaths))

0 commit comments

Comments
 (0)