Skip to content

Commit 5d34d19

Browse files
authored
Support openjceplus test builds in Grid view (#1025)
Signed-off-by: Lan Xia <Lan_Xia@ca.ibm.com>
1 parent d631129 commit 5d34d19

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • test-result-summary-client/src/utils

test-result-summary-client/src/utils/Utils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export const order = (a, b) => {
77
};
88
export const getInfoFromBuildName = (buildName) => {
99
const regex =
10-
/^(Test|Perf)_openjdk(\w+)_(\w+)_(\w+).(.+?)_(.+?_.+?(_xl|_fips140_2|_fips140_3_openjceplusfips|_fips140_3_openjceplusfips.fips140-3|_criu)?)(_.+)?$/i;
10+
/^(Test|Perf)_openjdk(\w+)_(\w+)_(\w+).(.+?)_(.+?_.+?(_xl|_fips140_2|_fips140_3_openjceplusfips|_fips140_3_openjceplusfips.fips140-3|_openjceplus|_criu)?)(_.+)?$/i;
1111
const tokens = buildName.match(regex);
1212
if (Array.isArray(tokens) && tokens.length > 5) {
1313
const [_, type, jdkVersion, jdkImpl, level, group, platform] = tokens;

0 commit comments

Comments
 (0)