Better startup log messages
parent
092e677ea0
commit
e23a19aecb
|
|
@ -2120,15 +2120,15 @@ class RemoteBuilder {
|
|||
${builderPathFull}/dist/remote-builder/setupCache.sh ${cacheFolderFull} ${branchName} ${libraryFolderFull}
|
||||
${builderPathFull}/dist/remote-builder/handleCaching.sh ${cacheFolderFull} ${branchName} ${libraryFolderFull} ${purgeRemoteCache}
|
||||
#
|
||||
echo ''
|
||||
echo ' '
|
||||
#
|
||||
echo 'Tree for the folder of this specific build:'
|
||||
tree -L 3 ${buildPathFull}
|
||||
#
|
||||
echo ''
|
||||
echo ' '
|
||||
#
|
||||
echo 'Root build volume folder:'
|
||||
ls /${buildVolumeFolder}
|
||||
tree -L 1 /${buildVolumeFolder}
|
||||
#
|
||||
`,
|
||||
], `/${buildVolumeFolder}`, `/${buildVolumeFolder}/`, [
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -1,9 +1,12 @@
|
|||
#!/bin/sh
|
||||
|
||||
echo "Combining LFS hash files into one hash, this can be used to cache LFS files"
|
||||
git lfs ls-files -l | cut -d' ' -f1 | sort > $1/lfsSum.txt
|
||||
git lfs ls-files -l
|
||||
git lfs ls-files -l | cut -d' ' -f1
|
||||
git lfs ls-files -l | cut -d' ' -f1 | sort
|
||||
git lfs ls-files -l | cut -d' ' -f1 | sort > $1/.lfs-assets-id
|
||||
echo ' '
|
||||
ls $1
|
||||
echo 'combined file:'
|
||||
cat $1/lfsSum.txt
|
||||
cat $1/.lfs-assets-id
|
||||
echo ' '
|
||||
|
|
|
|||
|
|
@ -129,15 +129,15 @@ class RemoteBuilder {
|
|||
${builderPathFull}/dist/remote-builder/setupCache.sh ${cacheFolderFull} ${branchName} ${libraryFolderFull}
|
||||
${builderPathFull}/dist/remote-builder/handleCaching.sh ${cacheFolderFull} ${branchName} ${libraryFolderFull} ${purgeRemoteCache}
|
||||
#
|
||||
echo ''
|
||||
echo ' '
|
||||
#
|
||||
echo 'Tree for the folder of this specific build:'
|
||||
tree -L 3 ${buildPathFull}
|
||||
#
|
||||
echo ''
|
||||
echo ' '
|
||||
#
|
||||
echo 'Root build volume folder:'
|
||||
ls /${buildVolumeFolder}
|
||||
tree -L 1 /${buildVolumeFolder}
|
||||
#
|
||||
`,
|
||||
],
|
||||
|
|
|
|||
Loading…
Reference in New Issue