[bot] Update dist directory

This commit is contained in:
bigdaz 2025-01-21 21:36:02 +00:00 committed by github-actions[bot]
parent 245c8a24de
commit 7749a316b1
10 changed files with 49 additions and 16 deletions

View file

@ -183127,12 +183127,14 @@ class DependencyGraphConfig {
return DependencyGraphOption.Generate;
case 'generate-and-submit':
return DependencyGraphOption.GenerateAndSubmit;
case 'generate-submit-and-upload':
return DependencyGraphOption.GenerateSubmitAndUpload;
case 'generate-and-upload':
return DependencyGraphOption.GenerateAndUpload;
case 'download-and-submit':
return DependencyGraphOption.DownloadAndSubmit;
}
throw TypeError(`The value '${val}' is not valid for 'dependency-graph'. Valid values are: [disabled, generate, generate-and-submit, generate-and-upload, download-and-submit]. The default value is 'disabled'.`);
throw TypeError(`The value '${val}' is not valid for 'dependency-graph'. Valid values are: [disabled, generate, generate-and-submit, generate-submit-and-upload, generate-and-upload, download-and-submit].`);
}
getDependencyGraphContinueOnFailure() {
return getBooleanInput('dependency-graph-continue-on-failure', true);
@ -183189,6 +183191,7 @@ var DependencyGraphOption;
DependencyGraphOption["Disabled"] = "disabled";
DependencyGraphOption["Generate"] = "generate";
DependencyGraphOption["GenerateAndSubmit"] = "generate-and-submit";
DependencyGraphOption["GenerateSubmitAndUpload"] = "generate-submit-and-upload";
DependencyGraphOption["GenerateAndUpload"] = "generate-and-upload";
DependencyGraphOption["DownloadAndSubmit"] = "download-and-submit";
})(DependencyGraphOption || (exports.DependencyGraphOption = DependencyGraphOption = {}));
@ -183625,7 +183628,10 @@ async function complete(config) {
case configuration_1.DependencyGraphOption.DownloadAndSubmit:
return;
case configuration_1.DependencyGraphOption.GenerateAndSubmit:
await findAndSubmitDependencyGraphs(config);
await findAndSubmitDependencyGraphs(config, false);
return;
case configuration_1.DependencyGraphOption.GenerateSubmitAndUpload:
await findAndSubmitDependencyGraphs(config, true);
return;
case configuration_1.DependencyGraphOption.GenerateAndUpload:
await findAndUploadDependencyGraphs(config);
@ -183647,7 +183653,7 @@ async function downloadAndSubmitDependencyGraphs(config) {
warnOrFail(config, configuration_1.DependencyGraphOption.DownloadAndSubmit, e);
}
}
async function findAndSubmitDependencyGraphs(config) {
async function findAndSubmitDependencyGraphs(config, uploadAfterSubmit) {
if (isRunningInActEnvironment()) {
core.info('Dependency graph not supported in the ACT environment.');
return;
@ -183665,6 +183671,9 @@ async function findAndSubmitDependencyGraphs(config) {
}
throw e;
}
if (uploadAfterSubmit) {
await uploadDependencyGraphs(dependencyGraphFiles, config);
}
}
async function findAndUploadDependencyGraphs(config) {
if (isRunningInActEnvironment()) {

File diff suppressed because one or more lines are too long

View file

@ -143373,12 +143373,14 @@ class DependencyGraphConfig {
return DependencyGraphOption.Generate;
case 'generate-and-submit':
return DependencyGraphOption.GenerateAndSubmit;
case 'generate-submit-and-upload':
return DependencyGraphOption.GenerateSubmitAndUpload;
case 'generate-and-upload':
return DependencyGraphOption.GenerateAndUpload;
case 'download-and-submit':
return DependencyGraphOption.DownloadAndSubmit;
}
throw TypeError(`The value '${val}' is not valid for 'dependency-graph'. Valid values are: [disabled, generate, generate-and-submit, generate-and-upload, download-and-submit]. The default value is 'disabled'.`);
throw TypeError(`The value '${val}' is not valid for 'dependency-graph'. Valid values are: [disabled, generate, generate-and-submit, generate-submit-and-upload, generate-and-upload, download-and-submit].`);
}
getDependencyGraphContinueOnFailure() {
return getBooleanInput('dependency-graph-continue-on-failure', true);
@ -143435,6 +143437,7 @@ var DependencyGraphOption;
DependencyGraphOption["Disabled"] = "disabled";
DependencyGraphOption["Generate"] = "generate";
DependencyGraphOption["GenerateAndSubmit"] = "generate-and-submit";
DependencyGraphOption["GenerateSubmitAndUpload"] = "generate-submit-and-upload";
DependencyGraphOption["GenerateAndUpload"] = "generate-and-upload";
DependencyGraphOption["DownloadAndSubmit"] = "download-and-submit";
})(DependencyGraphOption || (exports.DependencyGraphOption = DependencyGraphOption = {}));

File diff suppressed because one or more lines are too long

View file

@ -183112,12 +183112,14 @@ class DependencyGraphConfig {
return DependencyGraphOption.Generate;
case 'generate-and-submit':
return DependencyGraphOption.GenerateAndSubmit;
case 'generate-submit-and-upload':
return DependencyGraphOption.GenerateSubmitAndUpload;
case 'generate-and-upload':
return DependencyGraphOption.GenerateAndUpload;
case 'download-and-submit':
return DependencyGraphOption.DownloadAndSubmit;
}
throw TypeError(`The value '${val}' is not valid for 'dependency-graph'. Valid values are: [disabled, generate, generate-and-submit, generate-and-upload, download-and-submit]. The default value is 'disabled'.`);
throw TypeError(`The value '${val}' is not valid for 'dependency-graph'. Valid values are: [disabled, generate, generate-and-submit, generate-submit-and-upload, generate-and-upload, download-and-submit].`);
}
getDependencyGraphContinueOnFailure() {
return getBooleanInput('dependency-graph-continue-on-failure', true);
@ -183174,6 +183176,7 @@ var DependencyGraphOption;
DependencyGraphOption["Disabled"] = "disabled";
DependencyGraphOption["Generate"] = "generate";
DependencyGraphOption["GenerateAndSubmit"] = "generate-and-submit";
DependencyGraphOption["GenerateSubmitAndUpload"] = "generate-submit-and-upload";
DependencyGraphOption["GenerateAndUpload"] = "generate-and-upload";
DependencyGraphOption["DownloadAndSubmit"] = "download-and-submit";
})(DependencyGraphOption || (exports.DependencyGraphOption = DependencyGraphOption = {}));
@ -183610,7 +183613,10 @@ async function complete(config) {
case configuration_1.DependencyGraphOption.DownloadAndSubmit:
return;
case configuration_1.DependencyGraphOption.GenerateAndSubmit:
await findAndSubmitDependencyGraphs(config);
await findAndSubmitDependencyGraphs(config, false);
return;
case configuration_1.DependencyGraphOption.GenerateSubmitAndUpload:
await findAndSubmitDependencyGraphs(config, true);
return;
case configuration_1.DependencyGraphOption.GenerateAndUpload:
await findAndUploadDependencyGraphs(config);
@ -183632,7 +183638,7 @@ async function downloadAndSubmitDependencyGraphs(config) {
warnOrFail(config, configuration_1.DependencyGraphOption.DownloadAndSubmit, e);
}
}
async function findAndSubmitDependencyGraphs(config) {
async function findAndSubmitDependencyGraphs(config, uploadAfterSubmit) {
if (isRunningInActEnvironment()) {
core.info('Dependency graph not supported in the ACT environment.');
return;
@ -183650,6 +183656,9 @@ async function findAndSubmitDependencyGraphs(config) {
}
throw e;
}
if (uploadAfterSubmit) {
await uploadDependencyGraphs(dependencyGraphFiles, config);
}
}
async function findAndUploadDependencyGraphs(config) {
if (isRunningInActEnvironment()) {

File diff suppressed because one or more lines are too long

View file

@ -183107,12 +183107,14 @@ class DependencyGraphConfig {
return DependencyGraphOption.Generate;
case 'generate-and-submit':
return DependencyGraphOption.GenerateAndSubmit;
case 'generate-submit-and-upload':
return DependencyGraphOption.GenerateSubmitAndUpload;
case 'generate-and-upload':
return DependencyGraphOption.GenerateAndUpload;
case 'download-and-submit':
return DependencyGraphOption.DownloadAndSubmit;
}
throw TypeError(`The value '${val}' is not valid for 'dependency-graph'. Valid values are: [disabled, generate, generate-and-submit, generate-and-upload, download-and-submit]. The default value is 'disabled'.`);
throw TypeError(`The value '${val}' is not valid for 'dependency-graph'. Valid values are: [disabled, generate, generate-and-submit, generate-submit-and-upload, generate-and-upload, download-and-submit].`);
}
getDependencyGraphContinueOnFailure() {
return getBooleanInput('dependency-graph-continue-on-failure', true);
@ -183169,6 +183171,7 @@ var DependencyGraphOption;
DependencyGraphOption["Disabled"] = "disabled";
DependencyGraphOption["Generate"] = "generate";
DependencyGraphOption["GenerateAndSubmit"] = "generate-and-submit";
DependencyGraphOption["GenerateSubmitAndUpload"] = "generate-submit-and-upload";
DependencyGraphOption["GenerateAndUpload"] = "generate-and-upload";
DependencyGraphOption["DownloadAndSubmit"] = "download-and-submit";
})(DependencyGraphOption || (exports.DependencyGraphOption = DependencyGraphOption = {}));
@ -183605,7 +183608,10 @@ async function complete(config) {
case configuration_1.DependencyGraphOption.DownloadAndSubmit:
return;
case configuration_1.DependencyGraphOption.GenerateAndSubmit:
await findAndSubmitDependencyGraphs(config);
await findAndSubmitDependencyGraphs(config, false);
return;
case configuration_1.DependencyGraphOption.GenerateSubmitAndUpload:
await findAndSubmitDependencyGraphs(config, true);
return;
case configuration_1.DependencyGraphOption.GenerateAndUpload:
await findAndUploadDependencyGraphs(config);
@ -183627,7 +183633,7 @@ async function downloadAndSubmitDependencyGraphs(config) {
warnOrFail(config, configuration_1.DependencyGraphOption.DownloadAndSubmit, e);
}
}
async function findAndSubmitDependencyGraphs(config) {
async function findAndSubmitDependencyGraphs(config, uploadAfterSubmit) {
if (isRunningInActEnvironment()) {
core.info('Dependency graph not supported in the ACT environment.');
return;
@ -183645,6 +183651,9 @@ async function findAndSubmitDependencyGraphs(config) {
}
throw e;
}
if (uploadAfterSubmit) {
await uploadDependencyGraphs(dependencyGraphFiles, config);
}
}
async function findAndUploadDependencyGraphs(config) {
if (isRunningInActEnvironment()) {

File diff suppressed because one or more lines are too long

View file

@ -135422,12 +135422,14 @@ class DependencyGraphConfig {
return DependencyGraphOption.Generate;
case 'generate-and-submit':
return DependencyGraphOption.GenerateAndSubmit;
case 'generate-submit-and-upload':
return DependencyGraphOption.GenerateSubmitAndUpload;
case 'generate-and-upload':
return DependencyGraphOption.GenerateAndUpload;
case 'download-and-submit':
return DependencyGraphOption.DownloadAndSubmit;
}
throw TypeError(`The value '${val}' is not valid for 'dependency-graph'. Valid values are: [disabled, generate, generate-and-submit, generate-and-upload, download-and-submit]. The default value is 'disabled'.`);
throw TypeError(`The value '${val}' is not valid for 'dependency-graph'. Valid values are: [disabled, generate, generate-and-submit, generate-submit-and-upload, generate-and-upload, download-and-submit].`);
}
getDependencyGraphContinueOnFailure() {
return getBooleanInput('dependency-graph-continue-on-failure', true);
@ -135484,6 +135486,7 @@ var DependencyGraphOption;
DependencyGraphOption["Disabled"] = "disabled";
DependencyGraphOption["Generate"] = "generate";
DependencyGraphOption["GenerateAndSubmit"] = "generate-and-submit";
DependencyGraphOption["GenerateSubmitAndUpload"] = "generate-submit-and-upload";
DependencyGraphOption["GenerateAndUpload"] = "generate-and-upload";
DependencyGraphOption["DownloadAndSubmit"] = "download-and-submit";
})(DependencyGraphOption || (exports.DependencyGraphOption = DependencyGraphOption = {}));

File diff suppressed because one or more lines are too long