pull/524/head
Frostebite 2023-03-17 18:56:50 +00:00
parent d114c3ef9a
commit 37ebd2ffef
4 changed files with 9 additions and 5 deletions

6
dist/index.js generated vendored
View File

@ -5607,7 +5607,6 @@ class TaskParameterSerializer {
}
await cloud_runner_system_1.CloudRunnerSystem.Run(`chmod +x ./setEnv.sh`);
await cloud_runner_system_1.CloudRunnerSystem.Run(`./setEnv.sh`);
await cloud_runner_system_1.CloudRunnerSystem.Run(`printenv`);
}
}
exports.TaskParameterSerializer = TaskParameterSerializer;
@ -5768,7 +5767,10 @@ class BuildAutomationWorkflow {
echo "downloading game-ci..."
${cloneBuilderCommands}
echo "bootstrap game ci cloud runner..."
node ${builderPath} -m remote-cli-pre-build`;
node ${builderPath} -m remote-cli-pre-build
./setEnv.sh
rm ./setEnv.sh
printenv`;
}
static BuildCommands(builderPath) {
const distFolder = node_path_1.default.join(cloud_runner_folders_1.CloudRunnerFolders.builderPathAbsolute, 'dist');

2
dist/index.js.map generated vendored

File diff suppressed because one or more lines are too long

View File

@ -166,6 +166,5 @@ export class TaskParameterSerializer {
}
await CloudRunnerSystem.Run(`chmod +x ./setEnv.sh`);
await CloudRunnerSystem.Run(`./setEnv.sh`);
await CloudRunnerSystem.Run(`printenv`);
}
}

View File

@ -94,7 +94,10 @@ export class BuildAutomationWorkflow implements WorkflowInterface {
echo "downloading game-ci..."
${cloneBuilderCommands}
echo "bootstrap game ci cloud runner..."
node ${builderPath} -m remote-cli-pre-build`;
node ${builderPath} -m remote-cli-pre-build
./setEnv.sh
rm ./setEnv.sh
printenv`;
}
private static BuildCommands(builderPath: string) {