Skip to content
Snippets Groups Projects

ignore-file-size-gitlfs

Merged Martin Schroschk requested to merge ignore-file-size-gitlfs into preview
1 unresolved thread
1 file
+ 3
4
Compare changes
  • Side-by-side
  • Inline
@@ -35,11 +35,10 @@ large_files_present=false
@@ -35,11 +35,10 @@ large_files_present=false
branch="origin/${CI_MERGE_REQUEST_TARGET_BRANCH_NAME:-preview}"
branch="origin/${CI_MERGE_REQUEST_TARGET_BRANCH_NAME:-preview}"
source_hash=`git merge-base HEAD "$branch"`
source_hash=`git merge-base HEAD "$branch"`
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
if [[ "$f" =~ .*".webm" ]] || [[ "$f" =~ .*".mp4" ]] ; then
echo "It's there."
echo "Skip file in webm or mp4 format cause it is in git lfs."
 
continue
fi
fi
fs=$(wc -c $f | awk '{print $1}')
fs=$(wc -c $f | awk '{print $1}')
if [ $fs -gt 1048576 ]; then
if [ $fs -gt 1048576 ]; then
Loading