Skip to content

Commit bad4cb5

Browse files
authored
Improve/test workflow jdk25 (#3253)
* Improve test.yml workflow: replace JDK 24 with JDK 25 in matrix * Update test matrix: add JDK 25 and set eaJava to 26
1 parent 61068a1 commit bad4cb5

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/matrix.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,15 @@ matrix.addAxis({
2020
]
2121
});
2222

23-
const eaJava = '24';
23+
const eaJava = '26';
2424
matrix.addAxis({
2525
name: 'java_version',
2626
// Strings allow versions like 18-ea
2727
values: [
2828
'11',
2929
'17',
3030
'21',
31+
'25',
3132
eaJava,
3233
]
3334
});
@@ -86,6 +87,8 @@ matrix.generateRow({java_version: "11"});
8687
matrix.generateRow({java_version: "17"});
8788
// Ensure there will be at least one job with Java 21
8889
matrix.generateRow({java_version: "21"});
90+
// Ensure there will be at least one job with Java 25
91+
matrix.generateRow({java_version: "25"});
8992
// Ensure there will be at least one job with Java EA
9093
matrix.generateRow({java_version: eaJava});
9194
const include = matrix.generateRows(process.env.MATRIX_JOBS || 5);

CHANGES.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
Current (7.12.0)
2+
Update: Updated GitHub Actions test matrix to include JDK 25 and JDK 26 EA (Bartek Florczak)
23
Fixed: GITHUB-3236: DataProvider parameters are not refreshed on retry when cacheDataForTestRetries=false (Bartek Florczak)
34
Fixed: GITHUB-3227: assertEqualsNoOrder false positive when collection has same size and actual Collection is subset of expected collection (Krishnan Mahadevan)
45
Fixed: GITHUB-3177: Method org.testng.xml.XmlSuite#toXml do not save new properties like "share-thread-pool-for-data-providers" (Krishnan Mahadevan)

0 commit comments

Comments
 (0)