pull/310/head
Frostebite 2021-12-30 03:50:30 +00:00
parent 7d5a703946
commit 9eb2d50ec6
4 changed files with 107 additions and 5 deletions

View File

@ -0,0 +1,102 @@
[Cloud-Runner-System] ---
[Cloud-Runner-System] start
[Cloud-Runner-System] Git LFS initialized.
[Cloud-Runner-System] Cloning into 'data0-windows64-teh2builder'...
[Cloud-Runner-System] warning: redirecting to https://github.com/game-ci/unity-builder.git/
[Cloud-Runner-System]
[Cloud-Runner-System]
[Cloud-Runner-System] INPUT:
[Cloud-Runner-System] length 0
[Cloud-Runner-System] prototype [object Object]
[Cloud-Runner-System] cloudRunnerTests false
[Cloud-Runner-System] region eu-west-2
[Cloud-Runner-System] githubRepo undefined
[Cloud-Runner-System] gitSha undefined
[Cloud-Runner-System] runNumber 0
[Cloud-Runner-System] unityVersion auto
[Cloud-Runner-System] customImage false
[Cloud-Runner-System] targetPlatform StandaloneWindows64
[Cloud-Runner-System] projectPath test-project
[Cloud-Runner-System] buildName StandaloneWindows64
[Cloud-Runner-System] buildsPath build
[Cloud-Runner-System] versioningStrategy Semantic
[Cloud-Runner-System] specifiedVersion 2019.2.11f1
[Cloud-Runner-System] androidVersionCode false
[Cloud-Runner-System] androidAppBundle false
[Cloud-Runner-System] allowDirtyBuild false
[Cloud-Runner-System] cloudRunnerCluster k8s
[Cloud-Runner-System] awsBaseStackName game-ci-3-test
[Cloud-Runner-System] cloudRunnerMemory 750M
[Cloud-Runner-System] cloudRunnerCpu 1.0
[Cloud-Runner-System] kubeVolumeSize 5Gi
[Cloud-Runner-System] name Input
[Cloud-Runner-System] githubEnabled false
[Cloud-Runner-System]
[Cloud-Runner-System]
[Cloud-Runner-System] Entrypoint: remote-cli
[Cloud-Runner-System] (node:71) UnhandledPromiseRejectionWarning: Error: ENOENT: no such file or directory, mkdir '/data/0-windows64-g156'
[Cloud-Runner-System] at Object.mkdirSync (fs.js:1013:3)
[Cloud-Runner-System] at Function.<anonymous> (/\data/data0-windows64-teh2builder/webpack:/unity-builder/lib/model/cli/remote-client/cloud-runner-repository-setup.js:28:1)
[Cloud-Runner-System] at Generator.next (<anonymous>)
[Cloud-Runner-System] at /\data/data0-windows64-teh2builder/webpack:/unity-builder/lib/model/cli/remote-client/cloud-runner-repository-setup.js:8:1
[Cloud-Runner-System] at new Promise (<anonymous>)
[Cloud-Runner-System] at module.exports.__webpack_modules__.21811.__awaiter (/\data/data0-windows64-teh2builder/webpack:/unity-builder/lib/model/cli/remote-client/cloud-runner-repository-setup.js:4:1)
[Cloud-Runner-System] at Function.run (/\data/data0-windows64-teh2builder/webpack:/unity-builder/lib/model/cli/remote-client/cloud-runner-repository-setup.js:26:1)
[Cloud-Runner-System] at Function.<anonymous> (/\data/data0-windows64-teh2builder/webpack:/unity-builder/lib/model/cli/remote-client/index.js:20:1)
[Cloud-Runner-System] at Generator.next (<anonymous>)
[Cloud-Runner-System] at /\data/data0-windows64-teh2builder/webpack:/unity-builder/lib/model/cli/remote-client/index.js:8:1
[Cloud-Runner-System] (Use `node --trace-warnings ...` to show where the warning was created)
[Cloud-Runner-System] (node:71) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). To terminate the node process on unhandled promise rejection, use the CLI flag `--unhandled-rejections=strict` (see https://nodejs.org/api/cli.html#cli_unhandled_rejections_mode). (rejection id: 2)
[Cloud-Runner-System] (node:71) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.
[Cloud-Runner-System] end--o3q8o2m72

4
dist/index.js vendored
View File

@ -630,8 +630,8 @@ class CloudRunnerRepositorySetup {
static run() {
return __awaiter(this, void 0, void 0, function* () {
try {
yield cloud_runner_agent_system_1.CloudRunnerAgentSystem.Run(`mkdir -r ${cloud_runner_state_1.CloudRunnerState.buildPathFull}`);
yield cloud_runner_agent_system_1.CloudRunnerAgentSystem.Run(`mkdir -r ${cloud_runner_state_1.CloudRunnerState.repoPathFull}`);
yield cloud_runner_agent_system_1.CloudRunnerAgentSystem.Run(`mkdir -p ${cloud_runner_state_1.CloudRunnerState.buildPathFull}`);
yield cloud_runner_agent_system_1.CloudRunnerAgentSystem.Run(`mkdir -p ${cloud_runner_state_1.CloudRunnerState.repoPathFull}`);
yield CloudRunnerRepositorySetup.cloneRepoWithoutLFSFiles();
CloudRunnerRepositorySetup.LFS_ASSETS_HASH = yield lfs_hashing_1.LFSHashing.createLFSHashFiles();
cloud_runner_logger_1.default.logCli(CloudRunnerRepositorySetup.LFS_ASSETS_HASH);

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -11,8 +11,8 @@ export class CloudRunnerRepositorySetup {
static LFS_ASSETS_HASH;
public static async run() {
try {
await CloudRunnerAgentSystem.Run(`mkdir -r ${CloudRunnerState.buildPathFull}`);
await CloudRunnerAgentSystem.Run(`mkdir -r ${CloudRunnerState.repoPathFull}`);
await CloudRunnerAgentSystem.Run(`mkdir -p ${CloudRunnerState.buildPathFull}`);
await CloudRunnerAgentSystem.Run(`mkdir -p ${CloudRunnerState.repoPathFull}`);
await CloudRunnerRepositorySetup.cloneRepoWithoutLFSFiles();
CloudRunnerRepositorySetup.LFS_ASSETS_HASH = await LFSHashing.createLFSHashFiles();