cleanup and corrections
parent
7dfe3a2c24
commit
62721a4ead
|
|
@ -2180,13 +2180,17 @@ class RemoteBuilder {
|
||||||
echo ' '
|
echo ' '
|
||||||
echo 'Initializing source repository for cloning with caching of LFS files'
|
echo 'Initializing source repository for cloning with caching of LFS files'
|
||||||
${initializeSourceRepoForCaching}
|
${initializeSourceRepoForCaching}
|
||||||
|
echo ' '
|
||||||
|
echo 'Large File before LFS caching and pull'
|
||||||
ls -alh "${testLFSFile}"
|
ls -alh "${testLFSFile}"
|
||||||
|
echo ' '
|
||||||
echo 'Source repository initialized'
|
echo 'Source repository initialized'
|
||||||
echo ' '
|
echo ' '
|
||||||
echo 'Checking cache for the Unity project Library and git LFS files'
|
echo 'Checking cache for the Unity project Library and git LFS files'
|
||||||
${handleCaching}
|
${handleCaching}
|
||||||
echo 'Caching complete'
|
echo 'Caching complete'
|
||||||
echo ' '
|
echo ' '
|
||||||
|
echo 'Large File after LFS caching and pull'
|
||||||
ls -alh "${testLFSFile}"
|
ls -alh "${testLFSFile}"
|
||||||
echo ' '
|
echo ' '
|
||||||
#
|
#
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -38,7 +38,7 @@ latestLibraryCacheFile=$(ls -t "$libraryCacheFolder" | grep .zip$ | head -1)
|
||||||
if [ ! -z "$latestLibraryCacheFile" ]; then
|
if [ ! -z "$latestLibraryCacheFile" ]; then
|
||||||
echo "Library cache exists from build $latestLibraryCacheFile from $branchName"
|
echo "Library cache exists from build $latestLibraryCacheFile from $branchName"
|
||||||
echo 'Creating empty Library folder for cache'
|
echo 'Creating empty Library folder for cache'
|
||||||
mkdir "$libraryFolderFull"
|
mkdir -p "$libraryFolderFull"
|
||||||
unzip -q "$libraryCacheFolder/$latestLibraryCacheFile" -d "$libraryFolderFull"
|
unzip -q "$libraryCacheFolder/$latestLibraryCacheFile" -d "$libraryFolderFull"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -135,13 +135,17 @@ class RemoteBuilder {
|
||||||
echo ' '
|
echo ' '
|
||||||
echo 'Initializing source repository for cloning with caching of LFS files'
|
echo 'Initializing source repository for cloning with caching of LFS files'
|
||||||
${initializeSourceRepoForCaching}
|
${initializeSourceRepoForCaching}
|
||||||
|
echo ' '
|
||||||
|
echo 'Large File before LFS caching and pull'
|
||||||
ls -alh "${testLFSFile}"
|
ls -alh "${testLFSFile}"
|
||||||
|
echo ' '
|
||||||
echo 'Source repository initialized'
|
echo 'Source repository initialized'
|
||||||
echo ' '
|
echo ' '
|
||||||
echo 'Checking cache for the Unity project Library and git LFS files'
|
echo 'Checking cache for the Unity project Library and git LFS files'
|
||||||
${handleCaching}
|
${handleCaching}
|
||||||
echo 'Caching complete'
|
echo 'Caching complete'
|
||||||
echo ' '
|
echo ' '
|
||||||
|
echo 'Large File after LFS caching and pull'
|
||||||
ls -alh "${testLFSFile}"
|
ls -alh "${testLFSFile}"
|
||||||
echo ' '
|
echo ' '
|
||||||
#
|
#
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue