Compare commits

..

13 Commits

Author SHA1 Message Date
Aparna Jyothi
72c9ce2c84 check failure fix 2025-04-11 13:38:34 +05:30
Aparna Jyothi
8286b98650 check failures fix 2025-04-11 13:19:53 +05:30
Aparna Jyothi
24a47ec582 check failures fix 2025-04-11 13:06:15 +05:30
Aparna Jyothi
fd07d32b82 dragonwell check failures-fix 2025-04-11 13:01:48 +05:30
Aparna Jyothi
daeeba334d dragonwell check failure fix 2025-04-11 12:40:21 +05:30
Aparna Jyothi
39dad2981b dragonwell fix 2025-04-11 12:22:01 +05:30
Aparna Jyothi
837769072b dragonwell fix 2025-04-11 12:16:59 +05:30
Aparna Jyothi
31c9df3d55 Step to install sbt and dragonwell fix for 11 2025-04-11 12:06:12 +05:30
Aparna Jyothi
a87315f729 ubuntu-latest to ubuntu-22-04 2025-04-10 18:05:44 +05:30
Aparna Jyothi
8f6cc5c0f6 macos-latest to macos-13 2025-04-10 16:59:17 +05:30
Aparna Jyothi
4726f89bc9 macos-latest to macos-13 2025-04-10 16:55:47 +05:30
Aparna Jyothi
600e3d9953 npm audit fix 2025-04-09 14:11:43 +05:30
Aparna Jyothi
d0728cce06 actions-cache upgrade to 4.0.3 on node 16 2025-04-08 18:46:30 +05:30
3 changed files with 9 additions and 14 deletions

View File

@@ -1,3 +1,4 @@
name: Validate Java e2e
on:
@@ -69,7 +70,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [macos-13, windows-latest, ubuntu-latest]
os: [macos-latest, windows-latest, ubuntu-latest]
distribution: ['temurin', 'zulu', 'liberica']
version:
- '11.0'
@@ -263,7 +264,7 @@ jobs:
fail-fast: false
matrix:
# x86 is not supported on macOS
os: [windows-latest, ubuntu-22.04]
os: [windows-latest, ubuntu-latest]
distribution: ['liberica', 'zulu', 'corretto']
version: ['11']
steps:

7
dist/setup/index.js vendored
View File

@@ -130914,10 +130914,9 @@ class DragonwellDistribution extends base_installer_1.JavaBase {
}
// Some version of Dragonwell JDK are numerated with help of non-semver notation (more then 3 digits).
// Common practice is to transform excess digits to the so-called semver build part, which is prefixed with the plus sign, to be able to operate with them using semver tools.
const jdkVersionNums = jdkVersion
.replace('+', '.')
.split('.');
jdkVersion = util_1.convertVersionToSemver(`${jdkVersionNums.slice(0, 3).join('.')}.${jdkVersionNums[jdkVersionNums.length - 1]}`);
if (jdkVersion.split('.').length > 3) {
jdkVersion = util_1.convertVersionToSemver(jdkVersion);
}
for (const edition in archMap) {
eligibleVersions.push({
os: platform,

View File

@@ -149,14 +149,9 @@ export class DragonwellDistribution extends JavaBase {
// Some version of Dragonwell JDK are numerated with help of non-semver notation (more then 3 digits).
// Common practice is to transform excess digits to the so-called semver build part, which is prefixed with the plus sign, to be able to operate with them using semver tools.
const jdkVersionNums: string[] = jdkVersion
.replace('+', '.')
.split('.');
jdkVersion = convertVersionToSemver(
`${jdkVersionNums.slice(0, 3).join('.')}.${
jdkVersionNums[jdkVersionNums.length - 1]
}`
);
if (jdkVersion.split('.').length > 3) {
jdkVersion = convertVersionToSemver(jdkVersion);
}
for (const edition in archMap) {
eligibleVersions.push({