test: exclude Semeru JDK from the builds as there are issues running with Gradle 8.5

See https://github.com/gradle/gradle/issues/27273
diff --git a/.github/workflows/matrix.js b/.github/workflows/matrix.js
index 71bf872..bf22ef4 100644
--- a/.github/workflows/matrix.js
+++ b/.github/workflows/matrix.js
@@ -12,7 +12,9 @@
     {value: 'liberica', vendor: 'bellsoft', weight: 1},
     {value: 'microsoft', vendor: 'microsoft', weight: 1},
     {value: 'oracle', vendor: 'oracle', weight: 1},
-    {value: 'semeru', vendor: 'ibm', weight: 4},
+    // There are issues running Semeru JDK with Gradle 8.5
+    // See https://github.com/gradle/gradle/issues/27273
+    // {value: 'semeru', vendor: 'ibm', weight: 4},
     {value: 'temurin', vendor: 'eclipse', weight: 1},
     {value: 'zulu', vendor: 'azul', weight: 1},
   ]
@@ -89,9 +91,6 @@
 matrix.imply({java_version: eaJava}, {java_distribution: {value: 'oracle'}})
 // TODO: Semeru does not ship Java 21 builds yet
 matrix.exclude({java_distribution: {value: 'semeru'}, java_version: '21'});
-// Semeru 11 and 17 has issues with tr_TR locale: https://github.com/gradle/gradle/issues/27261
-// It is not clear what is the source of the issues, however, we can exclude the combination
-matrix.exclude({java_distribution: {value: 'semeru'}, locale: {language: 'tr', country: 'TR'}});
 // Ensure at least one job with "same" hashcode exists
 matrix.generateRow({hash: {value: 'same'}});
 // Ensure at least one Windows and at least one Linux job is present (macOS is almost the same as Linux)