mirror of
https://github.com/gradle/gradle-build-action.git
synced 2025-04-05 04:44:16 +02:00
Build outputs
This commit is contained in:
parent
f381b1f027
commit
a27f6925e8
4 changed files with 42 additions and 6 deletions
22
dist/main/index.js
vendored
22
dist/main/index.js
vendored
|
@ -93671,7 +93671,9 @@ function uploadDependencyGraphs() {
|
||||||
const relativeGraphFiles = graphFiles.map(x => getRelativePathFromWorkspace(x));
|
const relativeGraphFiles = graphFiles.map(x => getRelativePathFromWorkspace(x));
|
||||||
core.info(`Uploading dependency graph files: ${relativeGraphFiles}`);
|
core.info(`Uploading dependency graph files: ${relativeGraphFiles}`);
|
||||||
const artifactClient = artifact.create();
|
const artifactClient = artifact.create();
|
||||||
artifactClient.uploadArtifact(DEPENDENCY_GRAPH_ARTIFACT, graphFiles, workspaceDirectory);
|
artifactClient.uploadArtifact(DEPENDENCY_GRAPH_ARTIFACT, graphFiles, workspaceDirectory, {
|
||||||
|
retentionDays: (0, input_params_1.getArtifactRetentionDays)()
|
||||||
|
});
|
||||||
return graphFiles;
|
return graphFiles;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -93979,7 +93981,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
||||||
return result;
|
return result;
|
||||||
};
|
};
|
||||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||||
exports.DependencyGraphOption = exports.getDependencyGraphOption = exports.isDependencyGraphEnabled = exports.isJobSummaryEnabled = exports.getGithubToken = exports.getJobMatrix = exports.getArguments = exports.getGradleExecutable = exports.getGradleVersion = exports.getBuildRootDirectory = exports.getCacheExcludes = exports.getCacheIncludes = exports.isCacheCleanupEnabled = exports.isCacheDebuggingEnabled = exports.isCacheStrictMatch = exports.isCacheOverwriteExisting = exports.isCacheWriteOnly = exports.isCacheReadOnly = exports.isCacheDisabled = void 0;
|
exports.DependencyGraphOption = exports.parseNumericInput = exports.getArtifactRetentionDays = exports.getDependencyGraphOption = exports.isDependencyGraphEnabled = exports.isJobSummaryEnabled = exports.getGithubToken = exports.getJobMatrix = exports.getArguments = exports.getGradleExecutable = exports.getGradleVersion = exports.getBuildRootDirectory = exports.getCacheExcludes = exports.getCacheIncludes = exports.isCacheCleanupEnabled = exports.isCacheDebuggingEnabled = exports.isCacheStrictMatch = exports.isCacheOverwriteExisting = exports.isCacheWriteOnly = exports.isCacheReadOnly = exports.isCacheDisabled = void 0;
|
||||||
const core = __importStar(__nccwpck_require__(2186));
|
const core = __importStar(__nccwpck_require__(2186));
|
||||||
const string_argv_1 = __nccwpck_require__(9663);
|
const string_argv_1 = __nccwpck_require__(9663);
|
||||||
function isCacheDisabled() {
|
function isCacheDisabled() {
|
||||||
|
@ -94066,6 +94068,22 @@ function getDependencyGraphOption() {
|
||||||
throw TypeError(`The value '${val} is not valid for 'dependency-graph. Valid values are: [disabled, generate-and-upload, generate-and-submit, download-and-submit]. The default value is 'disabled'.`);
|
throw TypeError(`The value '${val} is not valid for 'dependency-graph. Valid values are: [disabled, generate-and-upload, generate-and-submit, download-and-submit]. The default value is 'disabled'.`);
|
||||||
}
|
}
|
||||||
exports.getDependencyGraphOption = getDependencyGraphOption;
|
exports.getDependencyGraphOption = getDependencyGraphOption;
|
||||||
|
function getArtifactRetentionDays() {
|
||||||
|
const val = core.getInput('artifact-retention-days');
|
||||||
|
return parseNumericInput('artifact-retention-days', val, 7);
|
||||||
|
}
|
||||||
|
exports.getArtifactRetentionDays = getArtifactRetentionDays;
|
||||||
|
function parseNumericInput(paramName, paramValue, paramDefault) {
|
||||||
|
if (paramValue.length === 0) {
|
||||||
|
return paramDefault;
|
||||||
|
}
|
||||||
|
const numericValue = parseInt(paramValue);
|
||||||
|
if (isNaN(numericValue)) {
|
||||||
|
throw TypeError(`The value '${paramValue}' is not a valid numeric value for '${paramName}'.`);
|
||||||
|
}
|
||||||
|
return numericValue;
|
||||||
|
}
|
||||||
|
exports.parseNumericInput = parseNumericInput;
|
||||||
function getBooleanInput(paramName, paramDefault = false) {
|
function getBooleanInput(paramName, paramDefault = false) {
|
||||||
const paramValue = core.getInput(paramName);
|
const paramValue = core.getInput(paramName);
|
||||||
switch (paramValue.toLowerCase().trim()) {
|
switch (paramValue.toLowerCase().trim()) {
|
||||||
|
|
2
dist/main/index.js.map
vendored
2
dist/main/index.js.map
vendored
File diff suppressed because one or more lines are too long
22
dist/post/index.js
vendored
22
dist/post/index.js
vendored
|
@ -93671,7 +93671,9 @@ function uploadDependencyGraphs() {
|
||||||
const relativeGraphFiles = graphFiles.map(x => getRelativePathFromWorkspace(x));
|
const relativeGraphFiles = graphFiles.map(x => getRelativePathFromWorkspace(x));
|
||||||
core.info(`Uploading dependency graph files: ${relativeGraphFiles}`);
|
core.info(`Uploading dependency graph files: ${relativeGraphFiles}`);
|
||||||
const artifactClient = artifact.create();
|
const artifactClient = artifact.create();
|
||||||
artifactClient.uploadArtifact(DEPENDENCY_GRAPH_ARTIFACT, graphFiles, workspaceDirectory);
|
artifactClient.uploadArtifact(DEPENDENCY_GRAPH_ARTIFACT, graphFiles, workspaceDirectory, {
|
||||||
|
retentionDays: (0, input_params_1.getArtifactRetentionDays)()
|
||||||
|
});
|
||||||
return graphFiles;
|
return graphFiles;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -93847,7 +93849,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
||||||
return result;
|
return result;
|
||||||
};
|
};
|
||||||
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
||||||
exports.DependencyGraphOption = exports.getDependencyGraphOption = exports.isDependencyGraphEnabled = exports.isJobSummaryEnabled = exports.getGithubToken = exports.getJobMatrix = exports.getArguments = exports.getGradleExecutable = exports.getGradleVersion = exports.getBuildRootDirectory = exports.getCacheExcludes = exports.getCacheIncludes = exports.isCacheCleanupEnabled = exports.isCacheDebuggingEnabled = exports.isCacheStrictMatch = exports.isCacheOverwriteExisting = exports.isCacheWriteOnly = exports.isCacheReadOnly = exports.isCacheDisabled = void 0;
|
exports.DependencyGraphOption = exports.parseNumericInput = exports.getArtifactRetentionDays = exports.getDependencyGraphOption = exports.isDependencyGraphEnabled = exports.isJobSummaryEnabled = exports.getGithubToken = exports.getJobMatrix = exports.getArguments = exports.getGradleExecutable = exports.getGradleVersion = exports.getBuildRootDirectory = exports.getCacheExcludes = exports.getCacheIncludes = exports.isCacheCleanupEnabled = exports.isCacheDebuggingEnabled = exports.isCacheStrictMatch = exports.isCacheOverwriteExisting = exports.isCacheWriteOnly = exports.isCacheReadOnly = exports.isCacheDisabled = void 0;
|
||||||
const core = __importStar(__nccwpck_require__(2186));
|
const core = __importStar(__nccwpck_require__(2186));
|
||||||
const string_argv_1 = __nccwpck_require__(9663);
|
const string_argv_1 = __nccwpck_require__(9663);
|
||||||
function isCacheDisabled() {
|
function isCacheDisabled() {
|
||||||
|
@ -93934,6 +93936,22 @@ function getDependencyGraphOption() {
|
||||||
throw TypeError(`The value '${val} is not valid for 'dependency-graph. Valid values are: [disabled, generate-and-upload, generate-and-submit, download-and-submit]. The default value is 'disabled'.`);
|
throw TypeError(`The value '${val} is not valid for 'dependency-graph. Valid values are: [disabled, generate-and-upload, generate-and-submit, download-and-submit]. The default value is 'disabled'.`);
|
||||||
}
|
}
|
||||||
exports.getDependencyGraphOption = getDependencyGraphOption;
|
exports.getDependencyGraphOption = getDependencyGraphOption;
|
||||||
|
function getArtifactRetentionDays() {
|
||||||
|
const val = core.getInput('artifact-retention-days');
|
||||||
|
return parseNumericInput('artifact-retention-days', val, 7);
|
||||||
|
}
|
||||||
|
exports.getArtifactRetentionDays = getArtifactRetentionDays;
|
||||||
|
function parseNumericInput(paramName, paramValue, paramDefault) {
|
||||||
|
if (paramValue.length === 0) {
|
||||||
|
return paramDefault;
|
||||||
|
}
|
||||||
|
const numericValue = parseInt(paramValue);
|
||||||
|
if (isNaN(numericValue)) {
|
||||||
|
throw TypeError(`The value '${paramValue}' is not a valid numeric value for '${paramName}'.`);
|
||||||
|
}
|
||||||
|
return numericValue;
|
||||||
|
}
|
||||||
|
exports.parseNumericInput = parseNumericInput;
|
||||||
function getBooleanInput(paramName, paramDefault = false) {
|
function getBooleanInput(paramName, paramDefault = false) {
|
||||||
const paramValue = core.getInput(paramName);
|
const paramValue = core.getInput(paramName);
|
||||||
switch (paramValue.toLowerCase().trim()) {
|
switch (paramValue.toLowerCase().trim()) {
|
||||||
|
|
2
dist/post/index.js.map
vendored
2
dist/post/index.js.map
vendored
File diff suppressed because one or more lines are too long
Loading…
Add table
Reference in a new issue