We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d8d3066 commit a89f547Copy full SHA for a89f547
1 file changed
gradle/ci_jobs.gradle
@@ -110,6 +110,8 @@ if (rootProject.hasProperty("gitBaseRef")) {
110
111
final projects = subprojects.sort { a, b -> b.projectDir.path.length() <=> a.projectDir.path.length() }
112
Map<Project, Set<String>> _affectedProjects = [:]
113
+ // Path prefixes mapped to affected task names. A file not matching any of these prefixes will affect all tasks in
114
+ // the project ("all" can be used a task name to explicitly state the same). Only the first matching prefix is used.
115
final List<Map<String, String>> matchers = [
116
[prefix: 'src/testFixtures/', task: 'testFixturesClasses'],
117
[prefix: 'src/test/', task: 'testClasses'],
0 commit comments