mirror of
https://github.com/actions/setup-java.git
synced 2026-08-07 14:39:28 +08:00
5827477733
* Optimize Maven configuration warm path Avoid eager Maven XML initialization on warm JDK runs by using deterministic serializers for new Maven settings/toolchains files, lazy-loading xmlbuilder2 for existing toolchains merges, and deferring Maven configuration modules until after Java setup. Add targeted tests for XML escaping, lazy xmlbuilder2 loading, concurrent Maven configuration, and a manual benchmark workflow for warm-path validation. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: 4dc58426-5e20-44cb-af16-8da0965fac3b * Address Maven optimization PR feedback Make the toolchain XML generator consistently async, remove redundant Maven configuration await handling, and reuse the existing XML test helper. Configure CodeQL to skip generated dist output so newly split vendored chunks do not report duplicate generated-code alerts. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: 4dc58426-5e20-44cb-af16-8da0965fac3b * Apply rubber duck review suggestions Document XML attribute escaping, simplify Maven configuration awaiting, and add a regression test that feeds fast-path toolchains output into the merge path. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: 4dc58426-5e20-44cb-af16-8da0965fac3b * Delete .github/codeql/codeql-config.yml * Update codeql-analysis.yml * Replace xmlbuilder2 in Maven toolchain merge Use fast-xml-parser for existing toolchains.xml parsing and serialize merged Maven toolchains deterministically. This removes the bundled xmlbuilder2 DOM/XML builder chunk from dist while preserving merge behavior for custom attributes, custom toolchains, partial entries, duplicate filtering, and escaping. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: 4dc58426-5e20-44cb-af16-8da0965fac3b * Move Maven benchmark out of setup-java Remove the Maven warm-path benchmark workflow and helper script from setup-java. Benchmark coverage is being moved to actions/setup-java-benchmarks so this action repository only carries the runtime optimization, tests, and generated distribution artifacts. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: 4dc58426-5e20-44cb-af16-8da0965fac3b --------- Copilot-Session: 4dc58426-5e20-44cb-af16-8da0965fac3b
170 lines
5.4 KiB
TypeScript
170 lines
5.4 KiB
TypeScript
import * as path from 'path';
|
|
import * as core from '@actions/core';
|
|
import * as io from '@actions/io';
|
|
|
|
import * as fs from 'fs';
|
|
import * as os from 'os';
|
|
import * as constants from './constants.js';
|
|
import * as gpg from './gpg.js';
|
|
import {getBooleanInput} from './util.js';
|
|
import {escapeXmlText} from './xml.js';
|
|
|
|
export async function configureAuthentication() {
|
|
const id = core.getInput(constants.INPUT_SERVER_ID);
|
|
const usernameEnvVar = getInputWithDeprecatedAlias(
|
|
constants.INPUT_SERVER_USERNAME_ENV_VAR,
|
|
constants.INPUT_SERVER_USERNAME_DEPRECATED,
|
|
constants.INPUT_DEFAULT_SERVER_USERNAME
|
|
);
|
|
const passwordEnvVar = getInputWithDeprecatedAlias(
|
|
constants.INPUT_SERVER_PASSWORD_ENV_VAR,
|
|
constants.INPUT_SERVER_PASSWORD_DEPRECATED,
|
|
constants.INPUT_DEFAULT_SERVER_PASSWORD
|
|
);
|
|
const settingsDirectory =
|
|
core.getInput(constants.INPUT_SETTINGS_PATH) ||
|
|
path.join(os.homedir(), constants.M2_DIR);
|
|
const overwriteSettings = getBooleanInput(
|
|
constants.INPUT_OVERWRITE_SETTINGS,
|
|
true
|
|
);
|
|
const gpgPrivateKey =
|
|
core.getInput(constants.INPUT_GPG_PRIVATE_KEY) ||
|
|
constants.INPUT_DEFAULT_GPG_PRIVATE_KEY;
|
|
const gpgPassphraseEnvVar = getInputWithDeprecatedAlias(
|
|
constants.INPUT_GPG_PASSPHRASE_ENV_VAR,
|
|
constants.INPUT_GPG_PASSPHRASE_DEPRECATED,
|
|
gpgPrivateKey ? constants.INPUT_DEFAULT_GPG_PASSPHRASE : undefined
|
|
);
|
|
|
|
if (gpgPrivateKey) {
|
|
core.setSecret(gpgPrivateKey);
|
|
}
|
|
|
|
await createAuthenticationSettings(
|
|
id,
|
|
usernameEnvVar,
|
|
passwordEnvVar,
|
|
settingsDirectory,
|
|
overwriteSettings,
|
|
gpgPassphraseEnvVar
|
|
);
|
|
|
|
if (gpgPrivateKey) {
|
|
core.info('Importing private gpg key');
|
|
const keyFingerprint = (await gpg.importKey(gpgPrivateKey)) || '';
|
|
core.saveState(constants.STATE_GPG_PRIVATE_KEY_FINGERPRINT, keyFingerprint);
|
|
}
|
|
}
|
|
|
|
export function getInputWithDeprecatedAlias(
|
|
inputName: string,
|
|
deprecatedInputName: string,
|
|
defaultValue?: string
|
|
): string {
|
|
const value = core.getInput(inputName);
|
|
const deprecatedValue = core.getInput(deprecatedInputName);
|
|
|
|
if (deprecatedValue) {
|
|
core.warning(
|
|
`The '${deprecatedInputName}' input is deprecated and may be removed in a future release. Please use '${inputName}' instead.`
|
|
);
|
|
}
|
|
|
|
return value || deprecatedValue || defaultValue || '';
|
|
}
|
|
|
|
export async function createAuthenticationSettings(
|
|
id: string,
|
|
usernameEnvVar: string,
|
|
passwordEnvVar: string,
|
|
settingsDirectory: string,
|
|
overwriteSettings: boolean,
|
|
gpgPassphraseEnvVar: string | undefined = undefined
|
|
) {
|
|
core.info(`Creating ${constants.MVN_SETTINGS_FILE} with server-id: ${id}`);
|
|
// when an alternate m2 location is specified use only that location (no .m2 directory)
|
|
// otherwise use the home/.m2/ path
|
|
await io.mkdirP(settingsDirectory);
|
|
await write(
|
|
settingsDirectory,
|
|
generate(id, usernameEnvVar, passwordEnvVar, gpgPassphraseEnvVar),
|
|
overwriteSettings
|
|
);
|
|
}
|
|
|
|
// only exported for testing purposes
|
|
export function generate(
|
|
id: string,
|
|
usernameEnvVar: string,
|
|
passwordEnvVar: string,
|
|
gpgPassphraseEnvVar?: string | undefined
|
|
) {
|
|
// The maven-gpg-plugin reads the passphrase from the environment variable
|
|
// named by the `gpg.passphraseEnvName` property (default MAVEN_GPG_PASSPHRASE).
|
|
// Only configure it when the requested env var name differs from that default;
|
|
// otherwise the plugin already reads the right variable and no extra settings
|
|
// are needed. Writing `gpg.passphrase` to settings.xml is deprecated and fails
|
|
// when the plugin's `bestPractices` mode is enabled.
|
|
const includeGpgPassphraseProfile =
|
|
gpgPassphraseEnvVar &&
|
|
gpgPassphraseEnvVar !== constants.MAVEN_GPG_PASSPHRASE_DEFAULT_ENV;
|
|
|
|
const lines = [
|
|
'<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"',
|
|
' xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"',
|
|
' xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 https://maven.apache.org/xsd/settings-1.0.0.xsd">',
|
|
' <interactiveMode>false</interactiveMode>',
|
|
' <servers>',
|
|
' <server>',
|
|
` <id>${escapeXmlText(id)}</id>`,
|
|
` <username>${escapeXmlText(`\${env.${usernameEnvVar}}`)}</username>`,
|
|
` <password>${escapeXmlText(`\${env.${passwordEnvVar}}`)}</password>`,
|
|
' </server>',
|
|
' </servers>'
|
|
];
|
|
|
|
if (includeGpgPassphraseProfile) {
|
|
lines.push(
|
|
' <profiles>',
|
|
' <profile>',
|
|
` <id>${constants.GPG_PASSPHRASE_PROFILE_ID}</id>`,
|
|
' <properties>',
|
|
` <gpg.passphraseEnvName>${escapeXmlText(gpgPassphraseEnvVar)}</gpg.passphraseEnvName>`,
|
|
' </properties>',
|
|
' </profile>',
|
|
' </profiles>',
|
|
' <activeProfiles>',
|
|
` <activeProfile>${constants.GPG_PASSPHRASE_PROFILE_ID}</activeProfile>`,
|
|
' </activeProfiles>'
|
|
);
|
|
}
|
|
|
|
lines.push('</settings>');
|
|
return lines.join('\n');
|
|
}
|
|
|
|
async function write(
|
|
directory: string,
|
|
settings: string,
|
|
overwriteSettings: boolean
|
|
) {
|
|
const location = path.join(directory, constants.MVN_SETTINGS_FILE);
|
|
const settingsExists = fs.existsSync(location);
|
|
if (settingsExists && overwriteSettings) {
|
|
core.info(`Overwriting existing file ${location}`);
|
|
} else if (!settingsExists) {
|
|
core.info(`Writing to ${location}`);
|
|
} else {
|
|
core.info(
|
|
`Skipping generation ${location} because file already exists and overwriting is not required`
|
|
);
|
|
return;
|
|
}
|
|
|
|
return fs.writeFileSync(location, settings, {
|
|
encoding: 'utf-8',
|
|
flag: 'w'
|
|
});
|
|
}
|