From f013c0edc3940da2e3f5553ad0499288151d1049 Mon Sep 17 00:00:00 2001 From: Phillip Webb Date: Fri, 15 Nov 2024 13:20:46 -0800 Subject: [PATCH] Automatically run `check` task from `buildSrc` Update `buildSrc` so that the `check` command is run as part of the regular build. This restores the behavior of Gradle 7.x and will hopefully allow us to catch test issues earlier. Closes gh-43192 --- buildSrc/build.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/buildSrc/build.gradle b/buildSrc/build.gradle index a8683f63a31..fed54332566 100644 --- a/buildSrc/build.gradle +++ b/buildSrc/build.gradle @@ -128,3 +128,4 @@ eclipse.classpath.file.whenMerged { jreEntry.entryAttributes['limit-modules'] = 'java.base' } +jar.dependsOn check