diff --git a/dist/index.js b/dist/index.js index 5238f4d6..0a8a8c33 100644 Binary files a/dist/index.js and b/dist/index.js differ diff --git a/dist/index.js.map b/dist/index.js.map index 9db8432e..08a62218 100644 Binary files a/dist/index.js.map and b/dist/index.js.map differ diff --git a/src/model/cloud-runner/remote-client/remote-client-logger.ts b/src/model/cloud-runner/remote-client/remote-client-logger.ts index 10c91bc6..5936c2d6 100644 --- a/src/model/cloud-runner/remote-client/remote-client-logger.ts +++ b/src/model/cloud-runner/remote-client/remote-client-logger.ts @@ -4,7 +4,7 @@ import path from 'node:path'; export class RemoteClientLogger { private static get LogFilePath() { - return path.join(`/`, `job-log.txt`); + return path.join(`/home`, `job-log.txt`); } public static log(message: string) { diff --git a/src/model/cloud-runner/workflows/build-automation-workflow.ts b/src/model/cloud-runner/workflows/build-automation-workflow.ts index 33219999..086781bd 100644 --- a/src/model/cloud-runner/workflows/build-automation-workflow.ts +++ b/src/model/cloud-runner/workflows/build-automation-workflow.ts @@ -92,8 +92,8 @@ export class BuildAutomationWorkflow implements WorkflowInterface { return `export GIT_DISCOVERY_ACROSS_FILESYSTEM=1 ${cloneBuilderCommands} -chmod -R a+rX ${CloudRunnerFolders.ToLinuxFolder(CloudRunnerFolders.uniqueCloudRunnerJobFolderAbsolute)} -chmod -R 755 ${CloudRunnerFolders.ToLinuxFolder(CloudRunnerFolders.uniqueCloudRunnerJobFolderAbsolute)} +chmod -R a+rX /home +chmod -R 755 /home node ${builderPath} -m remote-cli-pre-build`; }