log file path
parent
6f6ba10989
commit
ce6c1ca572
|
@ -5705,9 +5705,8 @@ node ${builderPath} -m remote-cli-pre-build`;
|
|||
cp -r "${cloud_runner_folders_1.CloudRunnerFolders.ToLinuxFolder(node_path_1.default.join(ubuntuPlatformsFolder, 'steps'))}" "/steps"
|
||||
chmod -R +x "/entrypoint.sh"
|
||||
chmod -R +x "/steps"
|
||||
echo "game ci start" >> /home/job-log.txt
|
||||
/entrypoint.sh >> /home/build-log.txt
|
||||
cat /home/build-log.txt >> /home/job-log.txt
|
||||
echo "game ci start" | tee /home/job-log.txt
|
||||
/entrypoint.sh | tee /home/job-log.txt
|
||||
node ${builderPath} -m remote-cli-post-build`;
|
||||
}
|
||||
}
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -108,9 +108,8 @@ node ${builderPath} -m remote-cli-pre-build`;
|
|||
cp -r "${CloudRunnerFolders.ToLinuxFolder(path.join(ubuntuPlatformsFolder, 'steps'))}" "/steps"
|
||||
chmod -R +x "/entrypoint.sh"
|
||||
chmod -R +x "/steps"
|
||||
echo "game ci start" >> /home/job-log.txt
|
||||
/entrypoint.sh >> /home/build-log.txt
|
||||
cat /home/build-log.txt >> /home/job-log.txt
|
||||
echo "game ci start" | tee /home/job-log.txt
|
||||
/entrypoint.sh | tee /home/job-log.txt
|
||||
node ${builderPath} -m remote-cli-post-build`;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue