From f581cb9d302b15044f873e10a85cde3f5fa54304 Mon Sep 17 00:00:00 2001 From: Alejandro Revilla Date: Sun, 3 Mar 2024 22:53:44 -0300 Subject: [PATCH] work around No signature of method: static org.gradle.nativeplatform.platform.OperatingSystem.current() --- build.gradle | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build.gradle b/build.gradle index 74223edfc..fac47d7ad 100644 --- a/build.gradle +++ b/build.gradle @@ -28,10 +28,10 @@ subprojects { events "passed", "skipped", "failed" } systemProperty 'user.language', 'en' - if (!(System.getenv("GITHUB_ACTIONS") != null && System.getenv("GITHUB_ACTIONS") == "true" && - (OperatingSystem.current().isMacOsX() || OperatingSystem.current().isWindows()))) { - maxParallelForks = Runtime.runtime.availableProcessors() - } +// if (!(System.getenv("GITHUB_ACTIONS") != null && System.getenv("GITHUB_ACTIONS") == "true" && +// (OperatingSystem.current().isMacOsX() || OperatingSystem.current().isWindows()))) { +// maxParallelForks = Runtime.runtime.availableProcessors() +// } } dependencies { testImplementation testlibs.junit