fixes
parent
d114c3ef9a
commit
37ebd2ffef
|
@ -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');
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -166,6 +166,5 @@ export class TaskParameterSerializer {
|
|||
}
|
||||
await CloudRunnerSystem.Run(`chmod +x ./setEnv.sh`);
|
||||
await CloudRunnerSystem.Run(`./setEnv.sh`);
|
||||
await CloudRunnerSystem.Run(`printenv`);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue