Readable logs

pull/273/head
Frostebite 2021-07-27 21:51:04 +01:00
parent 142ad6671a
commit 41b1c40cac
4 changed files with 23 additions and 10 deletions

6
dist/index.js vendored
View File

@ -2173,18 +2173,22 @@ class RemoteBuilder {
mkdir ${repoPathFull}
mkdir ${steamPathFull}
#
echo ' '
echo "Clone github.com/gameci/unity-builder utility repositories required for building"
git clone -q --branch "remote-builder/unified-providers" ${repo} ${builderPathFull}
git clone -q ${repo2} ${steamPathFull}
#
echo ' '
echo 'Cloning utility repositories for remote builder'
${cloneRemoteBuilderSourceCommand}
${cachePullGitLargeFilesAndLibraryFolder}
#
echo ' '
echo 'Tree for the folder of this specific build:'
tree -L 3 ${buildPathFull}
echo ' '
echo 'Root build volume folder:'
tree -L 1 /${buildVolumeFolder}
ls -lh /${buildVolumeFolder}
#
`,
], `/${buildVolumeFolder}`, `/${buildVolumeFolder}/`, [

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -13,13 +13,18 @@ echo "Cloning the repository being built:"
git clone --filter=blob:none --no-checkout $cloneUrl $repoPathFull
git --work-tree=$repoPathFull checkout $githubSha
echo ' '
echo 'Tree of cloned target repository:'
tree
echo ' '
# List git lfs files
git lfs ls-files --all
echo ' '
git lfs ls-files -l | cut -d ' ' -f1 | sort
echo ' '
git lfs ls-files -l | cut -d ' ' -f1 | sort > .lfs-assets-id
echo ' '
echo 'List all LFS file hashes:'
git lfs ls-files -l | cut -d ' ' -f1 | sort
echo ' '
echo 'Contents of .lfs-assets-id file:'
git lfs ls-files -l | cut -d ' ' -f1 | sort > .lfs-assets-id
echo .lfs-assets-id
echo ' '

View File

@ -119,18 +119,22 @@ class RemoteBuilder {
mkdir ${repoPathFull}
mkdir ${steamPathFull}
#
echo ' '
echo "Clone github.com/gameci/unity-builder utility repositories required for building"
git clone -q --branch "remote-builder/unified-providers" ${repo} ${builderPathFull}
git clone -q ${repo2} ${steamPathFull}
#
echo ' '
echo 'Cloning utility repositories for remote builder'
${cloneRemoteBuilderSourceCommand}
${cachePullGitLargeFilesAndLibraryFolder}
#
echo ' '
echo 'Tree for the folder of this specific build:'
tree -L 3 ${buildPathFull}
echo ' '
echo 'Root build volume folder:'
tree -L 1 /${buildVolumeFolder}
ls -lh /${buildVolumeFolder}
#
`,
],