mirror of
https://github.com/game-ci/unity-builder.git
synced 2026-06-01 06:16:14 -07:00
* Rename "Cloud Runner" to "Orchestrator" across entire codebase Breaking change: All CloudRunner classes, options, environment variables, and action.yml inputs have been renamed to Orchestrator equivalents. - Renamed src/model/cloud-runner/ directory to src/model/orchestrator/ - Renamed all cloud-runner-* files to orchestrator-* - Renamed all CloudRunner* classes to Orchestrator* (15+ classes) - Renamed all cloudRunner* properties to orchestrator* equivalents - Renamed CLOUD_RUNNER_* env vars to ORCHESTRATOR_* - Updated action.yml [CloudRunner] markers to [Orchestrator] - Updated workflow files and package.json test scripts - Updated all runtime strings (cache paths, log messages, branch refs) - Rebuilt dist/index.js No backward compatibility layer is provided. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * Remove tracked log/temp files and add to .gitignore Remove $LOG_FILE and temp/job-log.txt debug artifacts that should not be in the repository. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
176 lines
6.7 KiB
TypeScript
176 lines
6.7 KiB
TypeScript
import { Command } from 'commander-ts';
|
|
import { BuildParameters, Orchestrator, ImageTag, Input } from '..';
|
|
import * as core from '@actions/core';
|
|
import { ActionYamlReader } from '../input-readers/action-yaml';
|
|
import OrchestratorLogger from '../orchestrator/services/core/orchestrator-logger';
|
|
import OrchestratorQueryOverride from '../orchestrator/options/orchestrator-query-override';
|
|
import { CliFunction, CliFunctionsRepository } from './cli-functions-repository';
|
|
import { Caching } from '../orchestrator/remote-client/caching';
|
|
import { LfsHashing } from '../orchestrator/services/utility/lfs-hashing';
|
|
import { RemoteClient } from '../orchestrator/remote-client';
|
|
import OrchestratorOptionsReader from '../orchestrator/options/orchestrator-options-reader';
|
|
import GitHub from '../github';
|
|
import { OptionValues } from 'commander';
|
|
import { InputKey } from '../input';
|
|
|
|
export class Cli {
|
|
public static options: OptionValues | undefined;
|
|
static get isCliMode() {
|
|
return Cli.options !== undefined && Cli.options.mode !== undefined && Cli.options.mode !== '';
|
|
}
|
|
public static query(key: string, alternativeKey: string) {
|
|
if (Cli.options && Cli.options[key] !== undefined) {
|
|
return Cli.options[key];
|
|
}
|
|
if (Cli.options && alternativeKey && Cli.options[alternativeKey] !== undefined) {
|
|
return Cli.options[alternativeKey];
|
|
}
|
|
|
|
return;
|
|
}
|
|
|
|
public static InitCliMode() {
|
|
CliFunctionsRepository.PushCliFunctionSource(RemoteClient);
|
|
CliFunctionsRepository.PushCliFunctionSource(Caching);
|
|
CliFunctionsRepository.PushCliFunctionSource(LfsHashing);
|
|
const program = new Command();
|
|
program.version('0.0.1');
|
|
|
|
const properties = OrchestratorOptionsReader.GetProperties();
|
|
const actionYamlReader: ActionYamlReader = new ActionYamlReader();
|
|
for (const element of properties) {
|
|
program.option(`--${element} <${element}>`, actionYamlReader.GetActionYamlValue(element));
|
|
}
|
|
program.option(
|
|
'-m, --mode <mode>',
|
|
CliFunctionsRepository.GetAllCliModes()
|
|
.map((x) => `${x.key} (${x.description})`)
|
|
.join(` | `),
|
|
);
|
|
program.option('--populateOverride <populateOverride>', 'should use override query to pull input false by default');
|
|
program.option('--cachePushFrom <cachePushFrom>', 'cache push from source folder');
|
|
program.option('--cachePushTo <cachePushTo>', 'cache push to caching folder');
|
|
program.option('--artifactName <artifactName>', 'caching artifact name');
|
|
program.option('--select <select>', 'select a particular resource');
|
|
program.option('--logFile <logFile>', 'output to log file (log stream only)');
|
|
program.parse(process.argv);
|
|
Cli.options = program.opts();
|
|
|
|
return Cli.isCliMode;
|
|
}
|
|
|
|
static async RunCli(): Promise<void> {
|
|
GitHub.githubInputEnabled = false;
|
|
if (Cli.options!['populateOverride'] === `true`) {
|
|
await OrchestratorQueryOverride.PopulateQueryOverrideInput();
|
|
}
|
|
if (Cli.options!['logInput']) {
|
|
Cli.logInput();
|
|
}
|
|
const results = CliFunctionsRepository.GetCliFunctions(Cli.options?.mode);
|
|
OrchestratorLogger.log(`Entrypoint: ${results.key}`);
|
|
Cli.options!.versioning = 'None';
|
|
|
|
Orchestrator.buildParameters = await BuildParameters.create();
|
|
Orchestrator.buildParameters.buildGuid = process.env.BUILD_GUID || ``;
|
|
OrchestratorLogger.log(`Build Params:
|
|
${JSON.stringify(Orchestrator.buildParameters, undefined, 4)}
|
|
`);
|
|
Orchestrator.lockedWorkspace = process.env.LOCKED_WORKSPACE || ``;
|
|
OrchestratorLogger.log(`Locked Workspace: ${Orchestrator.lockedWorkspace}`);
|
|
await Orchestrator.setup(Orchestrator.buildParameters);
|
|
|
|
return await results.target[results.propertyKey](Cli.options);
|
|
}
|
|
|
|
@CliFunction(`print-input`, `prints all input`)
|
|
private static logInput() {
|
|
core.info(`\n`);
|
|
core.info(`INPUT:`);
|
|
const properties = OrchestratorOptionsReader.GetProperties();
|
|
for (const element of properties) {
|
|
if (
|
|
element in Input &&
|
|
Input[element as InputKey] !== undefined &&
|
|
Input[element as InputKey] !== '' &&
|
|
typeof Input[element as InputKey] !== `function` &&
|
|
element !== 'length' &&
|
|
element !== 'cliOptions' &&
|
|
element !== 'prototype'
|
|
) {
|
|
core.info(`${element} ${Input[element as InputKey]}`);
|
|
}
|
|
}
|
|
core.info(`\n`);
|
|
}
|
|
|
|
@CliFunction(`cli-build`, `runs a orchestrator build`)
|
|
public static async CLIBuild(): Promise<string> {
|
|
const buildParameter = await BuildParameters.create();
|
|
const baseImage = new ImageTag(buildParameter);
|
|
|
|
return (await Orchestrator.run(buildParameter, baseImage.toString())).BuildResults;
|
|
}
|
|
|
|
@CliFunction(`async-workflow`, `runs a orchestrator build`)
|
|
public static async asyncronousWorkflow(): Promise<string> {
|
|
const buildParameter = await BuildParameters.create();
|
|
const baseImage = new ImageTag(buildParameter);
|
|
await Orchestrator.setup(buildParameter);
|
|
|
|
return (await Orchestrator.run(buildParameter, baseImage.toString())).BuildResults;
|
|
}
|
|
|
|
@CliFunction(`checks-update`, `runs a orchestrator build`)
|
|
public static async checksUpdate() {
|
|
const buildParameter = await BuildParameters.create();
|
|
|
|
await Orchestrator.setup(buildParameter);
|
|
const input = JSON.parse(process.env.CHECKS_UPDATE || ``);
|
|
core.info(`Checks Update ${process.env.CHECKS_UPDATE}`);
|
|
if (input.mode === `create`) {
|
|
throw new Error(`Not supported: only use update`);
|
|
} else if (input.mode === `update`) {
|
|
await GitHub.updateGitHubCheckRequest(input.data);
|
|
}
|
|
}
|
|
|
|
@CliFunction(`garbage-collect`, `runs garbage collection`)
|
|
public static async GarbageCollect(): Promise<string> {
|
|
const buildParameter = await BuildParameters.create();
|
|
|
|
await Orchestrator.setup(buildParameter);
|
|
|
|
return await Orchestrator.Provider.garbageCollect(``, false, 0, false, false);
|
|
}
|
|
|
|
@CliFunction(`list-resources`, `lists active resources`)
|
|
public static async ListResources(): Promise<string[]> {
|
|
const buildParameter = await BuildParameters.create();
|
|
|
|
await Orchestrator.setup(buildParameter);
|
|
const result = await Orchestrator.Provider.listResources();
|
|
OrchestratorLogger.log(JSON.stringify(result, undefined, 4));
|
|
|
|
return result.map((x) => x.Name);
|
|
}
|
|
|
|
@CliFunction(`list-worfklow`, `lists running workflows`)
|
|
public static async ListWorfklow(): Promise<string[]> {
|
|
const buildParameter = await BuildParameters.create();
|
|
|
|
await Orchestrator.setup(buildParameter);
|
|
|
|
return (await Orchestrator.Provider.listWorkflow()).map((x) => x.Name);
|
|
}
|
|
|
|
@CliFunction(`watch`, `follows logs of a running workflow`)
|
|
public static async Watch(): Promise<string> {
|
|
const buildParameter = await BuildParameters.create();
|
|
|
|
await Orchestrator.setup(buildParameter);
|
|
|
|
return await Orchestrator.Provider.watchWorkflow();
|
|
}
|
|
}
|