This is an automated email from the ASF dual-hosted git repository.

vladimirsitnikov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/jmeter.git


The following commit(s) were added to refs/heads/master by this push:
     new 2948281a3c test: exclude Semeru JDK from the builds as there are 
issues running with Gradle 8.5
2948281a3c is described below

commit 2948281a3c885286db4122ca7d12925ab25d5164
Author: Vladimir Sitnikov <[email protected]>
AuthorDate: Mon Dec 4 14:51:50 2023 +0300

    test: exclude Semeru JDK from the builds as there are issues running with 
Gradle 8.5
    
    See https://github.com/gradle/gradle/issues/27273
---
 .github/workflows/matrix.js | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/.github/workflows/matrix.js b/.github/workflows/matrix.js
index 71bf872336..bf22ef42a5 100644
--- a/.github/workflows/matrix.js
+++ b/.github/workflows/matrix.js
@@ -12,7 +12,9 @@ matrix.addAxis({
     {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.exclude({java_version: eaJava})
 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)

Reply via email to