[bot] Update dist directory

This commit is contained in:
bot-githubaction
2025-06-11 21:29:58 +00:00
parent fd888822a4
commit ac638b010c
10 changed files with 116 additions and 62 deletions

View File

@@ -157471,7 +157471,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", ({ value: true }));
exports.WrapperValidationConfig = exports.GradleExecutionConfig = exports.BuildScanConfig = exports.JobSummaryOption = exports.SummaryConfig = exports.CacheCleanupOption = exports.CacheConfig = exports.DependencyGraphOption = exports.DependencyGraphConfig = exports.ACTION_METADATA_DIR = void 0;
exports.WrapperValidationConfig = exports.GradleExecutionConfig = exports.PluginRepositoryConfig = exports.BuildScanConfig = exports.JobSummaryOption = exports.SummaryConfig = exports.CacheCleanupOption = exports.CacheConfig = exports.DependencyGraphOption = exports.DependencyGraphConfig = exports.ACTION_METADATA_DIR = void 0;
exports.getJobMatrix = getJobMatrix;
exports.getGithubToken = getGithubToken;
exports.getWorkspaceDirectory = getWorkspaceDirectory;
@@ -157534,6 +157534,9 @@ class DependencyGraphConfig {
getIncludeConfigurations() {
return getOptionalInput('dependency-graph-include-configurations');
}
getPluginRepository() {
return new PluginRepositoryConfig();
}
static constructJobCorrelator(workflow, jobId, matrixJson) {
const matrixString = this.describeMatrix(matrixJson);
const label = matrixString ? `${workflow}-${jobId}-${matrixString}` : `${workflow}-${jobId}`;
@@ -157720,14 +157723,8 @@ class BuildScanConfig {
getDevelocityCcudPluginVersion() {
return core.getInput('develocity-ccud-plugin-version');
}
getGradlePluginRepositoryUrl() {
return core.getInput('gradle-plugin-repository-url');
}
getGradlePluginRepositoryUsername() {
return core.getInput('gradle-plugin-repository-username');
}
getGradlePluginRepositoryPassword() {
return core.getInput('gradle-plugin-repository-password');
getPluginRepository() {
return new PluginRepositoryConfig();
}
verifyTermsOfUseAgreement() {
if ((this.getBuildScanTermsOfUseUrl() !== 'https://gradle.com/terms-of-service' &&
@@ -157742,6 +157739,18 @@ class BuildScanConfig {
exports.BuildScanConfig = BuildScanConfig;
BuildScanConfig.DevelocityAccessKeyEnvVar = 'DEVELOCITY_ACCESS_KEY';
BuildScanConfig.GradleEnterpriseAccessKeyEnvVar = 'GRADLE_ENTERPRISE_ACCESS_KEY';
class PluginRepositoryConfig {
getUrl() {
return getOptionalInput('gradle-plugin-repository-url');
}
getUsername() {
return getOptionalInput('gradle-plugin-repository-username');
}
getPassword() {
return getOptionalInput('gradle-plugin-repository-password');
}
}
exports.PluginRepositoryConfig = PluginRepositoryConfig;
class GradleExecutionConfig {
getGradleVersion() {
return core.getInput('gradle-version');
@@ -157979,6 +157988,9 @@ async function setup(config) {
maybeExportVariable('DEPENDENCY_GRAPH_INCLUDE_PROJECTS', config.getIncludeProjects());
maybeExportVariable('DEPENDENCY_GRAPH_EXCLUDE_CONFIGURATIONS', config.getExcludeConfigurations());
maybeExportVariable('DEPENDENCY_GRAPH_INCLUDE_CONFIGURATIONS', config.getIncludeConfigurations());
maybeExportVariable('GRADLE_PLUGIN_REPOSITORY_URL', config.getPluginRepository().getUrl());
maybeExportVariable('GRADLE_PLUGIN_REPOSITORY_USERNAME', config.getPluginRepository().getUsername());
maybeExportVariable('GRADLE_PLUGIN_REPOSITORY_PASSWORD', config.getPluginRepository().getPassword());
}
function maybeExportVariable(variableName, value) {
if (!process.env[variableName]) {
@@ -158348,9 +158360,9 @@ async function setup(config) {
maybeExportVariableNotEmpty('DEVELOCITY_INJECTION_ENFORCE_URL', config.getDevelocityEnforceUrl());
maybeExportVariableNotEmpty('DEVELOCITY_INJECTION_DEVELOCITY_PLUGIN_VERSION', config.getDevelocityPluginVersion());
maybeExportVariableNotEmpty('DEVELOCITY_INJECTION_CCUD_PLUGIN_VERSION', config.getDevelocityCcudPluginVersion());
maybeExportVariableNotEmpty('DEVELOCITY_INJECTION__PLUGIN_REPOSITORY_URL', config.getGradlePluginRepositoryUrl());
maybeExportVariableNotEmpty('DEVELOCITY_INJECTION__PLUGIN_REPOSITORY_USERNAME', config.getGradlePluginRepositoryUsername());
maybeExportVariableNotEmpty('DEVELOCITY_INJECTION__PLUGIN_REPOSITORY_PASSWORD', config.getGradlePluginRepositoryPassword());
maybeExportVariableNotEmpty('DEVELOCITY_INJECTION_PLUGIN_REPOSITORY_URL', config.getPluginRepository().getUrl());
maybeExportVariableNotEmpty('DEVELOCITY_INJECTION_PLUGIN_REPOSITORY_USERNAME', config.getPluginRepository().getUsername());
maybeExportVariableNotEmpty('DEVELOCITY_INJECTION_PLUGIN_REPOSITORY_PASSWORD', config.getPluginRepository().getPassword());
if (config.getBuildScanPublishEnabled()) {
maybeExportVariable('DEVELOCITY_INJECTION_ENABLED', 'true');
maybeExportVariable('DEVELOCITY_INJECTION_DEVELOCITY_PLUGIN_VERSION', '4.0.2');

File diff suppressed because one or more lines are too long