Logging improvements

pull/273/head
Frostebite 2021-07-31 21:59:35 +01:00
parent 84c1ad2ca0
commit 58146ffdd8
3 changed files with 15 additions and 15 deletions

14
dist/index.js vendored
View File

@ -2179,18 +2179,18 @@ class RemoteBuilder {
echo 'Cloned ${repo2}'
#
echo ' '
echo 'Cloning main repo without LFS'
echo 'Initializing source repository for cloning with caching of LFS files'
${initializeSourceRepoForCaching}
echo 'Source repository initialized'
echo ' '
echo 'cache pull'
echo 'Checking cache for the Unity project Library and git LFS files'
${handleCaching}
echo 'Caching complete'
#
echo ' '
echo 'Tree for the folder of this specific build:'
tree -L 3 ${buildPathFull}
echo ' '
echo 'Root build volume folder:'
ls -lh /${buildVolumeFolder}
echo 'buildVolumeReport.txt and buildVolumeReport.txt saved to repository workspace directory'
tree -L 3 ${buildPathFull} > ${repoPathFull}/buildVolumeReport.txt
ls -lh /${buildVolumeFolder} > ${repoPathFull}/buildVolumeReport.txt
#
`,
], `/${buildVolumeFolder}`, `/${buildVolumeFolder}/`, [

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -125,18 +125,18 @@ class RemoteBuilder {
echo 'Cloned ${repo2}'
#
echo ' '
echo 'Cloning main repo'
echo 'Initializing source repository for cloning with caching of LFS files'
${initializeSourceRepoForCaching}
echo 'Source repository initialized'
echo ' '
echo 'cache pull'
echo 'Checking cache for the Unity project Library and git LFS files'
${handleCaching}
echo 'Caching complete'
#
echo ' '
echo 'Tree for the folder of this specific build:'
tree -L 3 ${buildPathFull}
echo ' '
echo 'Root build volume folder:'
ls -lh /${buildVolumeFolder}
echo 'buildVolumeReport.txt and buildVolumeReport.txt saved to repository workspace directory'
tree -L 3 ${buildPathFull} > ${repoPathFull}/buildVolumeReport.txt
ls -lh /${buildVolumeFolder} > ${repoPathFull}/buildVolumeReport.txt
#
`,
],