mirror of
https://github.com/gradle/actions
synced 2024-11-27 11:52:24 +00:00
[bot] Update dist directory
Some checks failed
CI-check-and-unit-test / check-format-and-unit-test (push) Has been cancelled
CI-codeql / Analyze (javascript-typescript) (push) Has been cancelled
CI-init-script-check / test-init-scripts (push) Has been cancelled
CI-integ-test / determine-suite (push) Has been cancelled
CI-update-dist / update-dist (push) Has been cancelled
CI-integ-test / dependency-submission (push) Has been cancelled
CI-integ-test / dependency-submission-failures (push) Has been cancelled
CI-integ-test / develocity-injection (push) Has been cancelled
CI-integ-test / provision-gradle-versions (push) Has been cancelled
CI-integ-test / restore-configuration-cache (push) Has been cancelled
CI-integ-test / restore-containerized-gradle-home (push) Has been cancelled
CI-integ-test / restore-custom-gradle-home (push) Has been cancelled
CI-integ-test / restore-gradle-home (push) Has been cancelled
CI-integ-test / restore-java-toolchain (push) Has been cancelled
CI-integ-test / sample-kotlin-dsl (push) Has been cancelled
CI-integ-test / sample-gradle-plugin (push) Has been cancelled
CI-integ-test / toolchain-detection (push) Has been cancelled
CI-integ-test / wrapper-validation (push) Has been cancelled
CI-integ-test / build-distribution (push) Has been cancelled
CI-integ-test / build-scan-publish (push) Has been cancelled
CI-integ-test / cache-cleanup (push) Has been cancelled
CI-integ-test / caching-config (push) Has been cancelled
CI-integ-test / dependency-graph (push) Has been cancelled
Some checks failed
CI-check-and-unit-test / check-format-and-unit-test (push) Has been cancelled
CI-codeql / Analyze (javascript-typescript) (push) Has been cancelled
CI-init-script-check / test-init-scripts (push) Has been cancelled
CI-integ-test / determine-suite (push) Has been cancelled
CI-update-dist / update-dist (push) Has been cancelled
CI-integ-test / dependency-submission (push) Has been cancelled
CI-integ-test / dependency-submission-failures (push) Has been cancelled
CI-integ-test / develocity-injection (push) Has been cancelled
CI-integ-test / provision-gradle-versions (push) Has been cancelled
CI-integ-test / restore-configuration-cache (push) Has been cancelled
CI-integ-test / restore-containerized-gradle-home (push) Has been cancelled
CI-integ-test / restore-custom-gradle-home (push) Has been cancelled
CI-integ-test / restore-gradle-home (push) Has been cancelled
CI-integ-test / restore-java-toolchain (push) Has been cancelled
CI-integ-test / sample-kotlin-dsl (push) Has been cancelled
CI-integ-test / sample-gradle-plugin (push) Has been cancelled
CI-integ-test / toolchain-detection (push) Has been cancelled
CI-integ-test / wrapper-validation (push) Has been cancelled
CI-integ-test / build-distribution (push) Has been cancelled
CI-integ-test / build-scan-publish (push) Has been cancelled
CI-integ-test / cache-cleanup (push) Has been cancelled
CI-integ-test / caching-config (push) Has been cancelled
CI-integ-test / dependency-graph (push) Has been cancelled
This commit is contained in:
parent
2289da045c
commit
dc97151e55
10 changed files with 134 additions and 16 deletions
32
dist/dependency-submission/main/index.js
vendored
32
dist/dependency-submission/main/index.js
vendored
|
@ -144575,11 +144575,24 @@ class DependencyGraphConfig {
|
|||
return DependencyGraphConfig.constructJobCorrelator(github.context.workflow, github.context.job, getJobMatrix());
|
||||
}
|
||||
getReportDirectory() {
|
||||
return path_1.default.resolve(getWorkspaceDirectory(), 'dependency-graph-reports');
|
||||
const param = core.getInput('dependency-graph-report-dir');
|
||||
return path_1.default.resolve(getWorkspaceDirectory(), param);
|
||||
}
|
||||
getDownloadArtifactName() {
|
||||
return process.env['DEPENDENCY_GRAPH_DOWNLOAD_ARTIFACT_NAME'];
|
||||
}
|
||||
getExcludeProjects() {
|
||||
return getOptionalInput('dependency-graph-exclude-projects');
|
||||
}
|
||||
getIncludeProjects() {
|
||||
return getOptionalInput('dependency-graph-include-projects');
|
||||
}
|
||||
getExcludeConfigurations() {
|
||||
return getOptionalInput('dependency-graph-exclude-configurations');
|
||||
}
|
||||
getIncludeConfigurations() {
|
||||
return getOptionalInput('dependency-graph-include-configurations');
|
||||
}
|
||||
static constructJobCorrelator(workflow, jobId, matrixJson) {
|
||||
const matrixString = this.describeMatrix(matrixJson);
|
||||
const label = matrixString ? `${workflow}-${jobId}-${matrixString}` : `${workflow}-${jobId}`;
|
||||
|
@ -144845,6 +144858,13 @@ function parseNumericInput(paramName, paramValue, paramDefault) {
|
|||
return numericValue;
|
||||
}
|
||||
exports.parseNumericInput = parseNumericInput;
|
||||
function getOptionalInput(paramName) {
|
||||
const paramValue = core.getInput(paramName);
|
||||
if (paramValue.length > 0) {
|
||||
return paramValue;
|
||||
}
|
||||
return undefined;
|
||||
}
|
||||
function getBooleanInput(paramName, paramDefault = false) {
|
||||
const paramValue = core.getInput(paramName);
|
||||
switch (paramValue.toLowerCase().trim()) {
|
||||
|
@ -144987,16 +145007,22 @@ async function setup(config) {
|
|||
core.exportVariable('GITHUB_DEPENDENCY_GRAPH_ENABLED', 'true');
|
||||
maybeExportVariable('GITHUB_DEPENDENCY_GRAPH_CONTINUE_ON_FAILURE', config.getDependencyGraphContinueOnFailure());
|
||||
maybeExportVariable('GITHUB_DEPENDENCY_GRAPH_JOB_CORRELATOR', config.getJobCorrelator());
|
||||
maybeExportVariable('GITHUB_DEPENDENCY_GRAPH_JOB_ID', github.context.runId);
|
||||
maybeExportVariable('GITHUB_DEPENDENCY_GRAPH_JOB_ID', github.context.runId.toString());
|
||||
maybeExportVariable('GITHUB_DEPENDENCY_GRAPH_REF', github.context.ref);
|
||||
maybeExportVariable('GITHUB_DEPENDENCY_GRAPH_SHA', getShaFromContext());
|
||||
maybeExportVariable('GITHUB_DEPENDENCY_GRAPH_WORKSPACE', (0, configuration_1.getWorkspaceDirectory)());
|
||||
maybeExportVariable('DEPENDENCY_GRAPH_REPORT_DIR', config.getReportDirectory());
|
||||
maybeExportVariable('DEPENDENCY_GRAPH_EXCLUDE_PROJECTS', config.getExcludeProjects());
|
||||
maybeExportVariable('DEPENDENCY_GRAPH_INCLUDE_PROJECTS', config.getIncludeProjects());
|
||||
maybeExportVariable('DEPENDENCY_GRAPH_EXCLUDE_CONFIGURATIONS', config.getExcludeConfigurations());
|
||||
maybeExportVariable('DEPENDENCY_GRAPH_INCLUDE_CONFIGURATIONS', config.getIncludeConfigurations());
|
||||
}
|
||||
exports.setup = setup;
|
||||
function maybeExportVariable(variableName, value) {
|
||||
if (!process.env[variableName]) {
|
||||
core.exportVariable(variableName, value);
|
||||
if (value !== undefined) {
|
||||
core.exportVariable(variableName, value);
|
||||
}
|
||||
}
|
||||
}
|
||||
async function complete(config) {
|
||||
|
|
2
dist/dependency-submission/main/index.js.map
vendored
2
dist/dependency-submission/main/index.js.map
vendored
File diff suppressed because one or more lines are too long
22
dist/dependency-submission/post/index.js
vendored
22
dist/dependency-submission/post/index.js
vendored
|
@ -98524,11 +98524,24 @@ class DependencyGraphConfig {
|
|||
return DependencyGraphConfig.constructJobCorrelator(github.context.workflow, github.context.job, getJobMatrix());
|
||||
}
|
||||
getReportDirectory() {
|
||||
return path_1.default.resolve(getWorkspaceDirectory(), 'dependency-graph-reports');
|
||||
const param = core.getInput('dependency-graph-report-dir');
|
||||
return path_1.default.resolve(getWorkspaceDirectory(), param);
|
||||
}
|
||||
getDownloadArtifactName() {
|
||||
return process.env['DEPENDENCY_GRAPH_DOWNLOAD_ARTIFACT_NAME'];
|
||||
}
|
||||
getExcludeProjects() {
|
||||
return getOptionalInput('dependency-graph-exclude-projects');
|
||||
}
|
||||
getIncludeProjects() {
|
||||
return getOptionalInput('dependency-graph-include-projects');
|
||||
}
|
||||
getExcludeConfigurations() {
|
||||
return getOptionalInput('dependency-graph-exclude-configurations');
|
||||
}
|
||||
getIncludeConfigurations() {
|
||||
return getOptionalInput('dependency-graph-include-configurations');
|
||||
}
|
||||
static constructJobCorrelator(workflow, jobId, matrixJson) {
|
||||
const matrixString = this.describeMatrix(matrixJson);
|
||||
const label = matrixString ? `${workflow}-${jobId}-${matrixString}` : `${workflow}-${jobId}`;
|
||||
|
@ -98794,6 +98807,13 @@ function parseNumericInput(paramName, paramValue, paramDefault) {
|
|||
return numericValue;
|
||||
}
|
||||
exports.parseNumericInput = parseNumericInput;
|
||||
function getOptionalInput(paramName) {
|
||||
const paramValue = core.getInput(paramName);
|
||||
if (paramValue.length > 0) {
|
||||
return paramValue;
|
||||
}
|
||||
return undefined;
|
||||
}
|
||||
function getBooleanInput(paramName, paramDefault = false) {
|
||||
const paramValue = core.getInput(paramName);
|
||||
switch (paramValue.toLowerCase().trim()) {
|
||||
|
|
2
dist/dependency-submission/post/index.js.map
vendored
2
dist/dependency-submission/post/index.js.map
vendored
File diff suppressed because one or more lines are too long
32
dist/setup-gradle/main/index.js
vendored
32
dist/setup-gradle/main/index.js
vendored
|
@ -144563,11 +144563,24 @@ class DependencyGraphConfig {
|
|||
return DependencyGraphConfig.constructJobCorrelator(github.context.workflow, github.context.job, getJobMatrix());
|
||||
}
|
||||
getReportDirectory() {
|
||||
return path_1.default.resolve(getWorkspaceDirectory(), 'dependency-graph-reports');
|
||||
const param = core.getInput('dependency-graph-report-dir');
|
||||
return path_1.default.resolve(getWorkspaceDirectory(), param);
|
||||
}
|
||||
getDownloadArtifactName() {
|
||||
return process.env['DEPENDENCY_GRAPH_DOWNLOAD_ARTIFACT_NAME'];
|
||||
}
|
||||
getExcludeProjects() {
|
||||
return getOptionalInput('dependency-graph-exclude-projects');
|
||||
}
|
||||
getIncludeProjects() {
|
||||
return getOptionalInput('dependency-graph-include-projects');
|
||||
}
|
||||
getExcludeConfigurations() {
|
||||
return getOptionalInput('dependency-graph-exclude-configurations');
|
||||
}
|
||||
getIncludeConfigurations() {
|
||||
return getOptionalInput('dependency-graph-include-configurations');
|
||||
}
|
||||
static constructJobCorrelator(workflow, jobId, matrixJson) {
|
||||
const matrixString = this.describeMatrix(matrixJson);
|
||||
const label = matrixString ? `${workflow}-${jobId}-${matrixString}` : `${workflow}-${jobId}`;
|
||||
|
@ -144833,6 +144846,13 @@ function parseNumericInput(paramName, paramValue, paramDefault) {
|
|||
return numericValue;
|
||||
}
|
||||
exports.parseNumericInput = parseNumericInput;
|
||||
function getOptionalInput(paramName) {
|
||||
const paramValue = core.getInput(paramName);
|
||||
if (paramValue.length > 0) {
|
||||
return paramValue;
|
||||
}
|
||||
return undefined;
|
||||
}
|
||||
function getBooleanInput(paramName, paramDefault = false) {
|
||||
const paramValue = core.getInput(paramName);
|
||||
switch (paramValue.toLowerCase().trim()) {
|
||||
|
@ -144975,16 +144995,22 @@ async function setup(config) {
|
|||
core.exportVariable('GITHUB_DEPENDENCY_GRAPH_ENABLED', 'true');
|
||||
maybeExportVariable('GITHUB_DEPENDENCY_GRAPH_CONTINUE_ON_FAILURE', config.getDependencyGraphContinueOnFailure());
|
||||
maybeExportVariable('GITHUB_DEPENDENCY_GRAPH_JOB_CORRELATOR', config.getJobCorrelator());
|
||||
maybeExportVariable('GITHUB_DEPENDENCY_GRAPH_JOB_ID', github.context.runId);
|
||||
maybeExportVariable('GITHUB_DEPENDENCY_GRAPH_JOB_ID', github.context.runId.toString());
|
||||
maybeExportVariable('GITHUB_DEPENDENCY_GRAPH_REF', github.context.ref);
|
||||
maybeExportVariable('GITHUB_DEPENDENCY_GRAPH_SHA', getShaFromContext());
|
||||
maybeExportVariable('GITHUB_DEPENDENCY_GRAPH_WORKSPACE', (0, configuration_1.getWorkspaceDirectory)());
|
||||
maybeExportVariable('DEPENDENCY_GRAPH_REPORT_DIR', config.getReportDirectory());
|
||||
maybeExportVariable('DEPENDENCY_GRAPH_EXCLUDE_PROJECTS', config.getExcludeProjects());
|
||||
maybeExportVariable('DEPENDENCY_GRAPH_INCLUDE_PROJECTS', config.getIncludeProjects());
|
||||
maybeExportVariable('DEPENDENCY_GRAPH_EXCLUDE_CONFIGURATIONS', config.getExcludeConfigurations());
|
||||
maybeExportVariable('DEPENDENCY_GRAPH_INCLUDE_CONFIGURATIONS', config.getIncludeConfigurations());
|
||||
}
|
||||
exports.setup = setup;
|
||||
function maybeExportVariable(variableName, value) {
|
||||
if (!process.env[variableName]) {
|
||||
core.exportVariable(variableName, value);
|
||||
if (value !== undefined) {
|
||||
core.exportVariable(variableName, value);
|
||||
}
|
||||
}
|
||||
}
|
||||
async function complete(config) {
|
||||
|
|
2
dist/setup-gradle/main/index.js.map
vendored
2
dist/setup-gradle/main/index.js.map
vendored
File diff suppressed because one or more lines are too long
32
dist/setup-gradle/post/index.js
vendored
32
dist/setup-gradle/post/index.js
vendored
|
@ -144555,11 +144555,24 @@ class DependencyGraphConfig {
|
|||
return DependencyGraphConfig.constructJobCorrelator(github.context.workflow, github.context.job, getJobMatrix());
|
||||
}
|
||||
getReportDirectory() {
|
||||
return path_1.default.resolve(getWorkspaceDirectory(), 'dependency-graph-reports');
|
||||
const param = core.getInput('dependency-graph-report-dir');
|
||||
return path_1.default.resolve(getWorkspaceDirectory(), param);
|
||||
}
|
||||
getDownloadArtifactName() {
|
||||
return process.env['DEPENDENCY_GRAPH_DOWNLOAD_ARTIFACT_NAME'];
|
||||
}
|
||||
getExcludeProjects() {
|
||||
return getOptionalInput('dependency-graph-exclude-projects');
|
||||
}
|
||||
getIncludeProjects() {
|
||||
return getOptionalInput('dependency-graph-include-projects');
|
||||
}
|
||||
getExcludeConfigurations() {
|
||||
return getOptionalInput('dependency-graph-exclude-configurations');
|
||||
}
|
||||
getIncludeConfigurations() {
|
||||
return getOptionalInput('dependency-graph-include-configurations');
|
||||
}
|
||||
static constructJobCorrelator(workflow, jobId, matrixJson) {
|
||||
const matrixString = this.describeMatrix(matrixJson);
|
||||
const label = matrixString ? `${workflow}-${jobId}-${matrixString}` : `${workflow}-${jobId}`;
|
||||
|
@ -144825,6 +144838,13 @@ function parseNumericInput(paramName, paramValue, paramDefault) {
|
|||
return numericValue;
|
||||
}
|
||||
exports.parseNumericInput = parseNumericInput;
|
||||
function getOptionalInput(paramName) {
|
||||
const paramValue = core.getInput(paramName);
|
||||
if (paramValue.length > 0) {
|
||||
return paramValue;
|
||||
}
|
||||
return undefined;
|
||||
}
|
||||
function getBooleanInput(paramName, paramDefault = false) {
|
||||
const paramValue = core.getInput(paramName);
|
||||
switch (paramValue.toLowerCase().trim()) {
|
||||
|
@ -144967,16 +144987,22 @@ async function setup(config) {
|
|||
core.exportVariable('GITHUB_DEPENDENCY_GRAPH_ENABLED', 'true');
|
||||
maybeExportVariable('GITHUB_DEPENDENCY_GRAPH_CONTINUE_ON_FAILURE', config.getDependencyGraphContinueOnFailure());
|
||||
maybeExportVariable('GITHUB_DEPENDENCY_GRAPH_JOB_CORRELATOR', config.getJobCorrelator());
|
||||
maybeExportVariable('GITHUB_DEPENDENCY_GRAPH_JOB_ID', github.context.runId);
|
||||
maybeExportVariable('GITHUB_DEPENDENCY_GRAPH_JOB_ID', github.context.runId.toString());
|
||||
maybeExportVariable('GITHUB_DEPENDENCY_GRAPH_REF', github.context.ref);
|
||||
maybeExportVariable('GITHUB_DEPENDENCY_GRAPH_SHA', getShaFromContext());
|
||||
maybeExportVariable('GITHUB_DEPENDENCY_GRAPH_WORKSPACE', (0, configuration_1.getWorkspaceDirectory)());
|
||||
maybeExportVariable('DEPENDENCY_GRAPH_REPORT_DIR', config.getReportDirectory());
|
||||
maybeExportVariable('DEPENDENCY_GRAPH_EXCLUDE_PROJECTS', config.getExcludeProjects());
|
||||
maybeExportVariable('DEPENDENCY_GRAPH_INCLUDE_PROJECTS', config.getIncludeProjects());
|
||||
maybeExportVariable('DEPENDENCY_GRAPH_EXCLUDE_CONFIGURATIONS', config.getExcludeConfigurations());
|
||||
maybeExportVariable('DEPENDENCY_GRAPH_INCLUDE_CONFIGURATIONS', config.getIncludeConfigurations());
|
||||
}
|
||||
exports.setup = setup;
|
||||
function maybeExportVariable(variableName, value) {
|
||||
if (!process.env[variableName]) {
|
||||
core.exportVariable(variableName, value);
|
||||
if (value !== undefined) {
|
||||
core.exportVariable(variableName, value);
|
||||
}
|
||||
}
|
||||
}
|
||||
async function complete(config) {
|
||||
|
|
2
dist/setup-gradle/post/index.js.map
vendored
2
dist/setup-gradle/post/index.js.map
vendored
File diff suppressed because one or more lines are too long
22
dist/wrapper-validation/main/index.js
vendored
22
dist/wrapper-validation/main/index.js
vendored
|
@ -89987,11 +89987,24 @@ class DependencyGraphConfig {
|
|||
return DependencyGraphConfig.constructJobCorrelator(github.context.workflow, github.context.job, getJobMatrix());
|
||||
}
|
||||
getReportDirectory() {
|
||||
return path_1.default.resolve(getWorkspaceDirectory(), 'dependency-graph-reports');
|
||||
const param = core.getInput('dependency-graph-report-dir');
|
||||
return path_1.default.resolve(getWorkspaceDirectory(), param);
|
||||
}
|
||||
getDownloadArtifactName() {
|
||||
return process.env['DEPENDENCY_GRAPH_DOWNLOAD_ARTIFACT_NAME'];
|
||||
}
|
||||
getExcludeProjects() {
|
||||
return getOptionalInput('dependency-graph-exclude-projects');
|
||||
}
|
||||
getIncludeProjects() {
|
||||
return getOptionalInput('dependency-graph-include-projects');
|
||||
}
|
||||
getExcludeConfigurations() {
|
||||
return getOptionalInput('dependency-graph-exclude-configurations');
|
||||
}
|
||||
getIncludeConfigurations() {
|
||||
return getOptionalInput('dependency-graph-include-configurations');
|
||||
}
|
||||
static constructJobCorrelator(workflow, jobId, matrixJson) {
|
||||
const matrixString = this.describeMatrix(matrixJson);
|
||||
const label = matrixString ? `${workflow}-${jobId}-${matrixString}` : `${workflow}-${jobId}`;
|
||||
|
@ -90257,6 +90270,13 @@ function parseNumericInput(paramName, paramValue, paramDefault) {
|
|||
return numericValue;
|
||||
}
|
||||
exports.parseNumericInput = parseNumericInput;
|
||||
function getOptionalInput(paramName) {
|
||||
const paramValue = core.getInput(paramName);
|
||||
if (paramValue.length > 0) {
|
||||
return paramValue;
|
||||
}
|
||||
return undefined;
|
||||
}
|
||||
function getBooleanInput(paramName, paramDefault = false) {
|
||||
const paramValue = core.getInput(paramName);
|
||||
switch (paramValue.toLowerCase().trim()) {
|
||||
|
|
2
dist/wrapper-validation/main/index.js.map
vendored
2
dist/wrapper-validation/main/index.js.map
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue