mirror of
https://github.com/game-ci/unity-builder.git
synced 2026-06-15 12:36:48 -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>
52 lines
1.6 KiB
TypeScript
52 lines
1.6 KiB
TypeScript
import { BuildParameters, ImageTag } from '../..';
|
|
import UnityVersioning from '../../unity-versioning';
|
|
import { Cli } from '../../cli/cli';
|
|
import GitHub from '../../github';
|
|
import setups from './orchestrator-suite.test';
|
|
|
|
async function CreateParameters(overrides: any) {
|
|
if (overrides) {
|
|
Cli.options = overrides;
|
|
}
|
|
const originalValue = GitHub.githubInputEnabled;
|
|
GitHub.githubInputEnabled = false;
|
|
const results = await BuildParameters.create();
|
|
GitHub.githubInputEnabled = originalValue;
|
|
delete Cli.options;
|
|
|
|
return results;
|
|
}
|
|
|
|
describe('Orchestrator Image', () => {
|
|
setups();
|
|
const testSecretName = 'testSecretName';
|
|
const testSecretValue = 'testSecretValue';
|
|
it('Can create valid image from normal config', async () => {
|
|
// Setup parameters
|
|
const buildParameter = await CreateParameters({
|
|
versioning: 'None',
|
|
projectPath: 'test-project',
|
|
unityVersion: UnityVersioning.read('test-project'),
|
|
targetPlatform: 'StandaloneWindows64',
|
|
customJob: `
|
|
- name: 'step 1'
|
|
image: 'ubuntu'
|
|
commands: 'printenv'
|
|
secrets:
|
|
- name: '${testSecretName}'
|
|
value: '${testSecretValue}'
|
|
`,
|
|
});
|
|
const baseImage = new ImageTag(buildParameter);
|
|
if (buildParameter.targetPlatform === undefined) {
|
|
throw new Error(`target platform includes undefined`);
|
|
}
|
|
if (baseImage.toString().includes('undefined')) {
|
|
throw new Error(`Base image ${baseImage.toString()} includes undefined`);
|
|
}
|
|
if (baseImage.toString().includes('NaN')) {
|
|
throw new Error(`Base image ${baseImage.toString()} includes nan`);
|
|
}
|
|
}, 1_000_000_000);
|
|
});
|