We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d631129 commit 5d34d19Copy full SHA for 5d34d19
1 file changed
test-result-summary-client/src/utils/Utils.js
@@ -7,7 +7,7 @@ export const order = (a, b) => {
7
};
8
export const getInfoFromBuildName = (buildName) => {
9
const regex =
10
- /^(Test|Perf)_openjdk(\w+)_(\w+)_(\w+).(.+?)_(.+?_.+?(_xl|_fips140_2|_fips140_3_openjceplusfips|_fips140_3_openjceplusfips.fips140-3|_criu)?)(_.+)?$/i;
+ /^(Test|Perf)_openjdk(\w+)_(\w+)_(\w+).(.+?)_(.+?_.+?(_xl|_fips140_2|_fips140_3_openjceplusfips|_fips140_3_openjceplusfips.fips140-3|_openjceplus|_criu)?)(_.+)?$/i;
11
const tokens = buildName.match(regex);
12
if (Array.isArray(tokens) && tokens.length > 5) {
13
const [_, type, jdkVersion, jdkImpl, level, group, platform] = tokens;
0 commit comments