From ba8f53df447734e4562c1cdc8253c6e12387aa14 Mon Sep 17 00:00:00 2001 From: scottf Date: Tue, 26 Sep 2023 21:14:44 -0400 Subject: [PATCH] trying to get this to build on github --- build.gradle | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index bb9119956..1baae35d0 100644 --- a/build.gradle +++ b/build.gradle @@ -15,7 +15,6 @@ plugins { def jarVersion = "2.17.0" -def isDevLocal = System.getenv("DEV_LOCAL") == "yes" def isRelease = System.getenv("BUILD_EVENT") == "release" def bs = System.getenv("BRANCH_SNAPSHOT") def snap = bs == null || bs.equals("") ? "-SNAPSHOT" : "." + bs + "-SNAPSHOT" @@ -85,7 +84,7 @@ test { maxFailures = 5 maxRetries = 5 } - maxParallelForks = isDevLocal ? Runtime.runtime.availableProcessors() : 1 + maxParallelForks = Runtime.runtime.availableProcessors() } javadoc {