mirror of
https://github.com/actions/setup-java.git
synced 2026-07-25 15:12:57 +00:00
3be16b57e9
* Use Azul metadata API
* Document arm64 -> aarch64 mapping in README.md
* Paginate through all available versions
* Fix typo: win_aarhc4
* Only query for linux_glibc packages
* Add Zulu CRaC package support to metadata migration
Fold CRaC-related work into the Zulu metadata API migration by wiring crac_supported query handling, extending Zulu package docs, and updating installer tests for jdk+crac/jre+crac behavior.
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
* Harden Zulu metadata pagination with safety cap
- Stop paginating on a short page to avoid an extra empty request
- Guard against undefined results (not just null)
- Cap iterations at 100 pages and warn if the limit is hit to
prevent a runaway loop if the API misbehaves
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
* Preserve JDK build number from Azul Metadata API
The Azul Metadata API returns java_version as a 3-element array
(e.g. [17,0,7]) and reports the build number separately in
openjdk_build_number. The migration mapped version directly from
java_version, dropping the build and breaking exact-version lookups
like 17.0.7+7 (e2e failure: "No matching version found for SemVer").
Add openjdk_build_number to IZuluVersions and append it to
java_version before converting to semver so resolved versions retain
the build (e.g. 17.0.7+7). Update the zulu test fixtures to mirror the
real API shape (3-element java_version plus openjdk_build_number) so
unit tests exercise the actual response format, and rebuild dist.
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
---------
Co-authored-by: Bruno Borges <brborges@microsoft.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
(cherry picked from commit d3530c1eb4)
213 lines
6.8 KiB
TypeScript
213 lines
6.8 KiB
TypeScript
import * as core from '@actions/core';
|
|
import * as tc from '@actions/tool-cache';
|
|
|
|
import path from 'path';
|
|
import fs from 'fs';
|
|
import semver from 'semver';
|
|
|
|
import {JavaBase} from '../base-installer';
|
|
import {IZuluVersions} from './models';
|
|
import {
|
|
extractJdkFile,
|
|
getDownloadArchiveExtension,
|
|
convertVersionToSemver,
|
|
isVersionSatisfies,
|
|
renameWinArchive
|
|
} from '../../util';
|
|
import {
|
|
JavaDownloadRelease,
|
|
JavaInstallerOptions,
|
|
JavaInstallerResults
|
|
} from '../base-models';
|
|
|
|
export class ZuluDistribution extends JavaBase {
|
|
constructor(installerOptions: JavaInstallerOptions) {
|
|
super('Zulu', installerOptions);
|
|
}
|
|
|
|
protected async findPackageForDownload(
|
|
version: string
|
|
): Promise<JavaDownloadRelease> {
|
|
const availableVersionsRaw = await this.getAvailableVersions();
|
|
const availableVersions = availableVersionsRaw.map(item => {
|
|
// The Azul Metadata API reports the JDK build number separately from
|
|
// java_version (e.g. java_version=[17,0,7], openjdk_build_number=7).
|
|
// Append it so the resulting semver retains the build (e.g. 17.0.7+7).
|
|
const javaVersion =
|
|
item.openjdk_build_number != null
|
|
? [...item.java_version, item.openjdk_build_number]
|
|
: item.java_version;
|
|
return {
|
|
version: convertVersionToSemver(javaVersion),
|
|
url: item.download_url,
|
|
zuluVersion: convertVersionToSemver(item.distro_version)
|
|
};
|
|
});
|
|
|
|
const satisfiedVersions = availableVersions
|
|
.filter(item => isVersionSatisfies(version, item.version))
|
|
.sort((a, b) => {
|
|
// Azul provides two versions: java_version and distro_version
|
|
// we should sort by both fields by descending
|
|
return (
|
|
-semver.compareBuild(a.version, b.version) ||
|
|
-semver.compareBuild(a.zuluVersion, b.zuluVersion)
|
|
);
|
|
})
|
|
.map(item => {
|
|
return {
|
|
version: item.version,
|
|
url: item.url
|
|
} as JavaDownloadRelease;
|
|
});
|
|
|
|
const resolvedFullVersion =
|
|
satisfiedVersions.length > 0 ? satisfiedVersions[0] : null;
|
|
if (!resolvedFullVersion) {
|
|
const availableVersionStrings = availableVersions.map(
|
|
item => item.version
|
|
);
|
|
throw this.createVersionNotFoundError(version, availableVersionStrings);
|
|
}
|
|
|
|
return resolvedFullVersion;
|
|
}
|
|
|
|
protected async downloadTool(
|
|
javaRelease: JavaDownloadRelease
|
|
): Promise<JavaInstallerResults> {
|
|
core.info(
|
|
`Downloading Java ${javaRelease.version} (${this.distribution}) from ${javaRelease.url} ...`
|
|
);
|
|
let javaArchivePath = await tc.downloadTool(javaRelease.url);
|
|
|
|
core.info(`Extracting Java archive...`);
|
|
const extension = getDownloadArchiveExtension();
|
|
if (process.platform === 'win32') {
|
|
javaArchivePath = renameWinArchive(javaArchivePath);
|
|
}
|
|
const extractedJavaPath = await extractJdkFile(javaArchivePath, extension);
|
|
|
|
const archiveName = fs.readdirSync(extractedJavaPath)[0];
|
|
const archivePath = path.join(extractedJavaPath, archiveName);
|
|
|
|
const javaPath = await tc.cacheDir(
|
|
archivePath,
|
|
this.toolcacheFolderName,
|
|
this.getToolcacheVersionName(javaRelease.version),
|
|
this.architecture
|
|
);
|
|
|
|
return {version: javaRelease.version, path: javaPath};
|
|
}
|
|
|
|
private async getAvailableVersions(): Promise<IZuluVersions[]> {
|
|
const arch = this.getArchitectureOptions();
|
|
const [bundleType, features] = this.packageType.split('+');
|
|
const platform = this.getPlatformOption();
|
|
const extension = getDownloadArchiveExtension();
|
|
const javafx = features?.includes('fx') ?? false;
|
|
const crac = features?.includes('crac') ?? false;
|
|
const releaseStatus = this.stable ? 'ga' : 'ea';
|
|
|
|
if (core.isDebug()) {
|
|
console.time('Retrieving available versions for Zulu took'); // eslint-disable-line no-console
|
|
}
|
|
|
|
const baseRequestArguments = [
|
|
`os=${platform}`,
|
|
`archive_type=${extension}`,
|
|
`java_package_type=${bundleType}`,
|
|
`javafx_bundled=${javafx}`,
|
|
`crac_supported=${crac}`,
|
|
`arch=${arch}`,
|
|
`release_status=${releaseStatus}`,
|
|
`availability_types=ca`
|
|
].join('&');
|
|
|
|
// Need to iterate through all pages to retrieve the list of all versions.
|
|
// The Azul API doesn't return a total page count, so paginate until a page
|
|
// comes back empty (or short), guarding against a runaway loop with a cap.
|
|
const pageSize = 100;
|
|
const maxPages = 100;
|
|
let pageIndex = 1;
|
|
const availableVersions: IZuluVersions[] = [];
|
|
while (pageIndex <= maxPages) {
|
|
const requestArguments = `${baseRequestArguments}&page=${pageIndex}&page_size=${pageSize}`;
|
|
const availableVersionsUrl = `https://api.azul.com/metadata/v1/zulu/packages/?${requestArguments}`;
|
|
if (core.isDebug() && pageIndex === 1) {
|
|
// the url is identical except for the page number, so print it once for debug
|
|
core.debug(
|
|
`Gathering available versions from '${availableVersionsUrl}'`
|
|
);
|
|
}
|
|
|
|
const paginationPage = (
|
|
await this.http.getJson<IZuluVersions[]>(availableVersionsUrl)
|
|
).result;
|
|
if (!paginationPage || paginationPage.length === 0) {
|
|
// stop paginating because we have reached the end of the results
|
|
break;
|
|
}
|
|
|
|
availableVersions.push(...paginationPage);
|
|
|
|
if (paginationPage.length < pageSize) {
|
|
// a short page means this was the last one; avoid an extra empty request
|
|
break;
|
|
}
|
|
|
|
pageIndex++;
|
|
}
|
|
|
|
if (pageIndex > maxPages) {
|
|
core.warning(
|
|
`Reached the maximum of ${maxPages} pages while listing Zulu versions; results may be truncated.`
|
|
);
|
|
}
|
|
|
|
if (core.isDebug()) {
|
|
core.startGroup('Print information about available versions');
|
|
console.timeEnd('Retrieving available versions for Zulu took'); // eslint-disable-line no-console
|
|
core.debug(`Available versions: [${availableVersions.length}]`);
|
|
core.debug(
|
|
availableVersions.map(item => item.java_version.join('.')).join(', ')
|
|
);
|
|
core.endGroup();
|
|
}
|
|
|
|
return availableVersions;
|
|
}
|
|
|
|
private getArchitectureOptions(): string {
|
|
const arch = this.distributionArchitecture();
|
|
switch (arch) {
|
|
case 'x64':
|
|
return 'x64';
|
|
case 'x86':
|
|
return 'x86';
|
|
case 'aarch64':
|
|
case 'arm64':
|
|
return 'aarch64';
|
|
default:
|
|
return arch;
|
|
}
|
|
}
|
|
|
|
private getPlatformOption(): string {
|
|
// Azul has own platform names so need to map them
|
|
switch (process.platform) {
|
|
case 'darwin':
|
|
return 'macos';
|
|
case 'win32':
|
|
return 'windows';
|
|
case 'linux':
|
|
// The new Metadata API's "linux" value returns both glibc and musl packages;
|
|
// use "linux_glibc" to target only glibc, which is what standard runners use.
|
|
return 'linux_glibc';
|
|
default:
|
|
return process.platform;
|
|
}
|
|
}
|
|
}
|