mirror of
https://github.com/actions/setup-java.git
synced 2026-07-16 13:52:59 +00:00
6657b99340
* Add set-default option This option allows to install an additional JDK without making it the default one. I have wanted this for quite a long time as I'm running custom GitHub Actions with Java, which might require a specific JDK and I don't want to pollute the JDK that is used by the overall workflow calling the action. And I'm apparently not alone as there was a preexisting issue. Fixes #560 * Dedupe setJavaDefault and document multi-version/toolchain behavior - Refactor setJavaDefault to delegate shared output/env logic to setJavaEnvironment, avoiding duplication between the two. - Document that set-default applies to all JDKs in a multiline java-version, and that installed JDKs remain registered in Maven toolchains regardless of set-default. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * test: fix Prettier formatting in base-installer test Resolves the failing 'Basic validation / build' format-check on __tests__/distributors/base-installer.test.ts (line exceeded print width). 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>
100 lines
2.9 KiB
TypeScript
100 lines
2.9 KiB
TypeScript
import * as tc from '@actions/tool-cache';
|
|
import * as core from '@actions/core';
|
|
|
|
import fs from 'fs';
|
|
import path from 'path';
|
|
|
|
import {JavaBase} from '../base-installer';
|
|
import {
|
|
JavaInstallerOptions,
|
|
JavaDownloadRelease,
|
|
JavaInstallerResults
|
|
} from '../base-models';
|
|
import {extractJdkFile} from '../../util';
|
|
import {MACOS_JAVA_CONTENT_POSTFIX} from '../../constants';
|
|
|
|
export class LocalDistribution extends JavaBase {
|
|
constructor(
|
|
installerOptions: JavaInstallerOptions,
|
|
private jdkFile?: string
|
|
) {
|
|
super('jdkfile', installerOptions);
|
|
}
|
|
|
|
public async setupJava(): Promise<JavaInstallerResults> {
|
|
let foundJava = this.findInToolcache();
|
|
|
|
if (foundJava) {
|
|
core.info(`Resolved Java ${foundJava.version} from tool-cache`);
|
|
} else {
|
|
core.info(
|
|
`Java ${this.version} was not found in tool-cache. Trying to unpack JDK file...`
|
|
);
|
|
if (!this.jdkFile) {
|
|
throw new Error("'jdkFile' is not specified");
|
|
}
|
|
const jdkFilePath = path.resolve(this.jdkFile);
|
|
const stats = fs.statSync(jdkFilePath);
|
|
|
|
if (!stats.isFile()) {
|
|
throw new Error(`JDK file was not found in path '${jdkFilePath}'`);
|
|
}
|
|
|
|
core.info(`Extracting Java from '${jdkFilePath}'`);
|
|
|
|
const extractedJavaPath = await extractJdkFile(jdkFilePath);
|
|
const archiveName = fs.readdirSync(extractedJavaPath)[0];
|
|
const archivePath = path.join(extractedJavaPath, archiveName);
|
|
const javaVersion = this.version;
|
|
|
|
const javaPath = await tc.cacheDir(
|
|
archivePath,
|
|
this.toolcacheFolderName,
|
|
this.getToolcacheVersionName(javaVersion),
|
|
this.architecture
|
|
);
|
|
|
|
foundJava = {
|
|
version: javaVersion,
|
|
path: javaPath
|
|
};
|
|
}
|
|
|
|
// JDK folder may contain postfix "Contents/Home" on macOS
|
|
const macOSPostfixPath = path.join(
|
|
foundJava.path,
|
|
MACOS_JAVA_CONTENT_POSTFIX
|
|
);
|
|
if (process.platform === 'darwin' && fs.existsSync(macOSPostfixPath)) {
|
|
foundJava.path = macOSPostfixPath;
|
|
}
|
|
|
|
if (this.setDefault) {
|
|
core.info(`Setting Java ${foundJava.version} as the default`);
|
|
this.setJavaDefault(foundJava.version, foundJava.path);
|
|
} else {
|
|
core.info(
|
|
`Installing Java ${foundJava.version} (not setting as default)`
|
|
);
|
|
this.setJavaEnvironment(foundJava.version, foundJava.path);
|
|
}
|
|
return foundJava;
|
|
}
|
|
|
|
protected async findPackageForDownload(
|
|
version: string // eslint-disable-line @typescript-eslint/no-unused-vars
|
|
): Promise<JavaDownloadRelease> {
|
|
throw new Error(
|
|
'This method should not be implemented in local file provider'
|
|
);
|
|
}
|
|
|
|
protected async downloadTool(
|
|
javaRelease: JavaDownloadRelease // eslint-disable-line @typescript-eslint/no-unused-vars
|
|
): Promise<JavaInstallerResults> {
|
|
throw new Error(
|
|
'This method should not be implemented in local file provider'
|
|
);
|
|
}
|
|
}
|