Skip to content
Snippets Groups Projects

ignore-file-size-gitlfs

Merged Martin Schroschk requested to merge ignore-file-size-gitlfs into preview
1 file
+ 5
4
Compare changes
  • Side-by-side
  • Inline
@@ -35,11 +35,12 @@ large_files_present=false
branch="origin/${CI_MERGE_REQUEST_TARGET_BRANCH_NAME:-preview}"
source_hash=`git merge-base HEAD "$branch"`
echo "===="
git diff $source_hash --name-only
echo "===="
gitlfsfiles=$(git lfs ls-files -n)
for f in $(git diff $source_hash --name-only); do
for f in $(git diff $source_hash --name-only); do
if [[ "$gitlfsfiles" =~ .*"$f".* ]]; then
echo "It's there."
fi
fs=$(wc -c $f | awk '{print $1}')
if [ $fs -gt 1048576 ]; then
echo $f 'is over 1M ('$fs' bytes)'
Loading