mirror of
https://github.com/game-ci/unity-builder.git
synced 2026-06-13 01:13:54 -07:00
9d475434d3
* 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>
68 lines
2.2 KiB
TypeScript
68 lines
2.2 KiB
TypeScript
import Input from '../../input';
|
|
import { GenericInputReader } from '../../input-readers/generic-input-reader';
|
|
import OrchestratorOptions from './orchestrator-options';
|
|
|
|
const formatFunction = (value: string, arguments_: any[]) => {
|
|
for (const element of arguments_) {
|
|
value = value.replace(`{${element.key}}`, element.value);
|
|
}
|
|
|
|
return value;
|
|
};
|
|
|
|
class OrchestratorQueryOverride {
|
|
static queryOverrides: { [key: string]: string } | undefined;
|
|
|
|
// TODO accept premade secret sources or custom secret source definition yamls
|
|
|
|
public static query(key: string, alternativeKey: string) {
|
|
if (OrchestratorQueryOverride.queryOverrides && OrchestratorQueryOverride.queryOverrides[key] !== undefined) {
|
|
return OrchestratorQueryOverride.queryOverrides[key];
|
|
}
|
|
if (
|
|
OrchestratorQueryOverride.queryOverrides &&
|
|
alternativeKey &&
|
|
OrchestratorQueryOverride.queryOverrides[alternativeKey] !== undefined
|
|
) {
|
|
return OrchestratorQueryOverride.queryOverrides[alternativeKey];
|
|
}
|
|
|
|
return;
|
|
}
|
|
|
|
private static shouldUseOverride(query: string) {
|
|
if (OrchestratorOptions.inputPullCommand !== '') {
|
|
if (OrchestratorOptions.pullInputList.length > 0) {
|
|
const doesInclude =
|
|
OrchestratorOptions.pullInputList.includes(query) ||
|
|
OrchestratorOptions.pullInputList.includes(Input.ToEnvVarFormat(query));
|
|
|
|
return doesInclude ? true : false;
|
|
} else {
|
|
return true;
|
|
}
|
|
}
|
|
}
|
|
|
|
private static async queryOverride(query: string) {
|
|
if (!this.shouldUseOverride(query)) {
|
|
throw new Error(`Should not be trying to run override query on ${query}`);
|
|
}
|
|
|
|
return await GenericInputReader.Run(
|
|
formatFunction(OrchestratorOptions.inputPullCommand, [{ key: 0, value: query }]),
|
|
);
|
|
}
|
|
|
|
public static async PopulateQueryOverrideInput() {
|
|
const queries = OrchestratorOptions.pullInputList;
|
|
OrchestratorQueryOverride.queryOverrides = {};
|
|
for (const element of queries) {
|
|
if (OrchestratorQueryOverride.shouldUseOverride(element)) {
|
|
OrchestratorQueryOverride.queryOverrides[element] = await OrchestratorQueryOverride.queryOverride(element);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
export default OrchestratorQueryOverride;
|