mirror of
https://github.com/game-ci/unity-builder.git
synced 2025-07-07 20:35:33 -04:00
160 lines
5.5 KiB
TypeScript
160 lines
5.5 KiB
TypeScript
import BuildParameters from '../../../build-parameters';
|
|
import CloudRunnerEnvironmentVariable from '../../options/cloud-runner-environment-variable';
|
|
import CloudRunnerLogger from '../../services/core/cloud-runner-logger';
|
|
import { ProviderInterface } from '../provider-interface';
|
|
import CloudRunnerSecret from '../../options/cloud-runner-secret';
|
|
import Docker from '../../../docker';
|
|
import { Action } from '../../..';
|
|
import { writeFileSync } from 'node:fs';
|
|
import CloudRunner from '../../cloud-runner';
|
|
import { ProviderResource } from '../provider-resource';
|
|
import { ProviderWorkflow } from '../provider-workflow';
|
|
import { CloudRunnerSystem } from '../../services/core/cloud-runner-system';
|
|
import * as fs from 'node:fs';
|
|
import { CommandHookService } from '../../services/hooks/command-hook-service';
|
|
import { StringKeyValuePair } from '../../../shared-types';
|
|
|
|
class LocalDockerCloudRunner implements ProviderInterface {
|
|
public buildParameters!: BuildParameters;
|
|
|
|
listResources(): Promise<ProviderResource[]> {
|
|
return new Promise((resolve) => resolve([]));
|
|
}
|
|
listWorkflow(): Promise<ProviderWorkflow[]> {
|
|
throw new Error('Method not implemented.');
|
|
}
|
|
watchWorkflow(): Promise<string> {
|
|
throw new Error('Method not implemented.');
|
|
}
|
|
garbageCollect(
|
|
// eslint-disable-next-line no-unused-vars
|
|
filter: string,
|
|
// eslint-disable-next-line no-unused-vars
|
|
previewOnly: boolean,
|
|
// eslint-disable-next-line no-unused-vars
|
|
olderThan: Number,
|
|
// eslint-disable-next-line no-unused-vars
|
|
fullCache: boolean,
|
|
// eslint-disable-next-line no-unused-vars
|
|
baseDependencies: boolean,
|
|
): Promise<string> {
|
|
return new Promise((result) => result(``));
|
|
}
|
|
async cleanupWorkflow(
|
|
buildGuid: string,
|
|
buildParameters: BuildParameters,
|
|
// eslint-disable-next-line no-unused-vars
|
|
branchName: string,
|
|
// eslint-disable-next-line no-unused-vars
|
|
defaultSecretsArray: { ParameterKey: string; EnvironmentVariable: string; ParameterValue: string }[],
|
|
) {
|
|
const { workspace } = Action;
|
|
if (
|
|
fs.existsSync(
|
|
`${workspace}/cloud-runner-cache/cache/build/build-${buildParameters.buildGuid}.tar${
|
|
CloudRunner.buildParameters.useCompressionStrategy ? '.lz4' : ''
|
|
}`,
|
|
)
|
|
) {
|
|
await CloudRunnerSystem.Run(`ls ${workspace}/cloud-runner-cache/cache/build/`);
|
|
await CloudRunnerSystem.Run(
|
|
`rm -r ${workspace}/cloud-runner-cache/cache/build/build-${buildParameters.buildGuid}.tar${
|
|
CloudRunner.buildParameters.useCompressionStrategy ? '.lz4' : ''
|
|
}`,
|
|
);
|
|
}
|
|
}
|
|
setupWorkflow(
|
|
buildGuid: string,
|
|
buildParameters: BuildParameters,
|
|
// eslint-disable-next-line no-unused-vars
|
|
branchName: string,
|
|
// eslint-disable-next-line no-unused-vars
|
|
defaultSecretsArray: { ParameterKey: string; EnvironmentVariable: string; ParameterValue: string }[],
|
|
) {
|
|
this.buildParameters = buildParameters;
|
|
}
|
|
|
|
public async runTaskInWorkflow(
|
|
buildGuid: string,
|
|
image: string,
|
|
commands: string,
|
|
mountdir: string,
|
|
workingdir: string,
|
|
environment: CloudRunnerEnvironmentVariable[],
|
|
secrets: CloudRunnerSecret[],
|
|
): Promise<string> {
|
|
CloudRunnerLogger.log(buildGuid);
|
|
CloudRunnerLogger.log(commands);
|
|
|
|
const { workspace, actionFolder } = Action;
|
|
const content: StringKeyValuePair[] = [];
|
|
for (const x of secrets) {
|
|
content.push({ name: x.EnvironmentVariable, value: x.ParameterValue });
|
|
}
|
|
for (const x of environment) {
|
|
content.push({ name: x.name, value: x.value });
|
|
}
|
|
|
|
// if (this.buildParameters?.cloudRunnerIntegrationTests) {
|
|
// core.info(JSON.stringify(content, undefined, 4));
|
|
// core.info(JSON.stringify(secrets, undefined, 4));
|
|
// core.info(JSON.stringify(environment, undefined, 4));
|
|
// }
|
|
|
|
// eslint-disable-next-line unicorn/no-for-loop
|
|
for (let index = 0; index < content.length; index++) {
|
|
if (content[index] === undefined) {
|
|
delete content[index];
|
|
}
|
|
}
|
|
let myOutput = '';
|
|
const sharedFolder = `/data/`;
|
|
|
|
// core.info(JSON.stringify({ workspace, actionFolder, ...this.buildParameters, ...content }, undefined, 4));
|
|
const entrypointFilePath = `start.sh`;
|
|
const fileContents = `#!/bin/bash
|
|
set -e
|
|
|
|
mkdir -p /github/workspace/cloud-runner-cache
|
|
mkdir -p /data/cache
|
|
cp -a /github/workspace/cloud-runner-cache/. ${sharedFolder}
|
|
${CommandHookService.ApplyHooksToCommands(commands, this.buildParameters)}
|
|
cp -a ${sharedFolder}. /github/workspace/cloud-runner-cache/
|
|
`;
|
|
writeFileSync(`${workspace}/${entrypointFilePath}`, fileContents, {
|
|
flag: 'w',
|
|
});
|
|
|
|
if (CloudRunner.buildParameters.cloudRunnerDebug) {
|
|
CloudRunnerLogger.log(`Running local-docker: \n ${fileContents}`);
|
|
}
|
|
|
|
if (fs.existsSync(`${workspace}/cloud-runner-cache`)) {
|
|
await CloudRunnerSystem.Run(`ls ${workspace}/cloud-runner-cache && du -sh ${workspace}/cloud-runner-cache`);
|
|
}
|
|
await Docker.run(
|
|
image,
|
|
{ workspace, actionFolder, ...this.buildParameters },
|
|
false,
|
|
`chmod +x /github/workspace/${entrypointFilePath} && /github/workspace/${entrypointFilePath}`,
|
|
content,
|
|
{
|
|
listeners: {
|
|
stdout: (data: Buffer) => {
|
|
myOutput += data.toString();
|
|
},
|
|
stderr: (data: Buffer) => {
|
|
myOutput += `[LOCAL-DOCKER-ERROR]${data.toString()}`;
|
|
},
|
|
},
|
|
},
|
|
true,
|
|
false,
|
|
);
|
|
|
|
return myOutput;
|
|
}
|
|
}
|
|
export default LocalDockerCloudRunner;
|