Merge branch '2.7.x'

Closes gh-33414
This commit is contained in:
Phillip Webb 2022-11-29 11:00:18 -08:00
commit 67c9c7377a

View File

@ -84,6 +84,7 @@ public class SystemTestPlugin implements Plugin<Project> {
systemTest.shouldRunAfter(JavaPlugin.TEST_TASK_NAME);
if (isCi()) {
systemTest.getOutputs().upToDateWhen(NEVER);
systemTest.getOutputs().doNotCacheIf("System tests are always rerun on CI", (task) -> true);
}
}