Readable logs
parent
142ad6671a
commit
41b1c40cac
|
|
@ -2173,18 +2173,22 @@ class RemoteBuilder {
|
||||||
mkdir ${repoPathFull}
|
mkdir ${repoPathFull}
|
||||||
mkdir ${steamPathFull}
|
mkdir ${steamPathFull}
|
||||||
#
|
#
|
||||||
|
echo ' '
|
||||||
echo "Clone github.com/gameci/unity-builder utility repositories required for building"
|
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 --branch "remote-builder/unified-providers" ${repo} ${builderPathFull}
|
||||||
git clone -q ${repo2} ${steamPathFull}
|
git clone -q ${repo2} ${steamPathFull}
|
||||||
#
|
#
|
||||||
|
echo ' '
|
||||||
|
echo 'Cloning utility repositories for remote builder'
|
||||||
${cloneRemoteBuilderSourceCommand}
|
${cloneRemoteBuilderSourceCommand}
|
||||||
${cachePullGitLargeFilesAndLibraryFolder}
|
${cachePullGitLargeFilesAndLibraryFolder}
|
||||||
#
|
#
|
||||||
|
echo ' '
|
||||||
echo 'Tree for the folder of this specific build:'
|
echo 'Tree for the folder of this specific build:'
|
||||||
tree -L 3 ${buildPathFull}
|
tree -L 3 ${buildPathFull}
|
||||||
echo ' '
|
echo ' '
|
||||||
echo 'Root build volume folder:'
|
echo 'Root build volume folder:'
|
||||||
tree -L 1 /${buildVolumeFolder}
|
ls -lh /${buildVolumeFolder}
|
||||||
#
|
#
|
||||||
`,
|
`,
|
||||||
], `/${buildVolumeFolder}`, `/${buildVolumeFolder}/`, [
|
], `/${buildVolumeFolder}`, `/${buildVolumeFolder}/`, [
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -13,13 +13,18 @@ echo "Cloning the repository being built:"
|
||||||
git clone --filter=blob:none --no-checkout $cloneUrl $repoPathFull
|
git clone --filter=blob:none --no-checkout $cloneUrl $repoPathFull
|
||||||
git --work-tree=$repoPathFull checkout $githubSha
|
git --work-tree=$repoPathFull checkout $githubSha
|
||||||
|
|
||||||
|
echo ' '
|
||||||
|
echo 'Tree of cloned target repository:'
|
||||||
tree
|
tree
|
||||||
echo ' '
|
|
||||||
# List git lfs files
|
echo ' '
|
||||||
git lfs ls-files --all
|
echo 'List all LFS file hashes:'
|
||||||
echo ' '
|
git lfs ls-files -l | cut -d ' ' -f1 | sort
|
||||||
git lfs ls-files -l | cut -d ' ' -f1 | sort
|
|
||||||
echo ' '
|
|
||||||
git lfs ls-files -l | cut -d ' ' -f1 | sort > .lfs-assets-id
|
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 ' '
|
echo ' '
|
||||||
|
|
|
||||||
|
|
@ -119,18 +119,22 @@ class RemoteBuilder {
|
||||||
mkdir ${repoPathFull}
|
mkdir ${repoPathFull}
|
||||||
mkdir ${steamPathFull}
|
mkdir ${steamPathFull}
|
||||||
#
|
#
|
||||||
|
echo ' '
|
||||||
echo "Clone github.com/gameci/unity-builder utility repositories required for building"
|
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 --branch "remote-builder/unified-providers" ${repo} ${builderPathFull}
|
||||||
git clone -q ${repo2} ${steamPathFull}
|
git clone -q ${repo2} ${steamPathFull}
|
||||||
#
|
#
|
||||||
|
echo ' '
|
||||||
|
echo 'Cloning utility repositories for remote builder'
|
||||||
${cloneRemoteBuilderSourceCommand}
|
${cloneRemoteBuilderSourceCommand}
|
||||||
${cachePullGitLargeFilesAndLibraryFolder}
|
${cachePullGitLargeFilesAndLibraryFolder}
|
||||||
#
|
#
|
||||||
|
echo ' '
|
||||||
echo 'Tree for the folder of this specific build:'
|
echo 'Tree for the folder of this specific build:'
|
||||||
tree -L 3 ${buildPathFull}
|
tree -L 3 ${buildPathFull}
|
||||||
echo ' '
|
echo ' '
|
||||||
echo 'Root build volume folder:'
|
echo 'Root build volume folder:'
|
||||||
tree -L 1 /${buildVolumeFolder}
|
ls -lh /${buildVolumeFolder}
|
||||||
#
|
#
|
||||||
`,
|
`,
|
||||||
],
|
],
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue