no lfs in release

pull/32587/head
Adeeb Shihadeh 11 months ago
parent 63f55f4915
commit a21f773366
  1. 8
      release/build_devel.sh
  2. 4
      release/release_files.py

@ -48,7 +48,6 @@ cp -pR --parents $(./release/release_files.py) $TARGET_DIR/
# in the directory
cd $TARGET_DIR
rm -f panda/board/obj/panda.bin.signed
git submodule status
# include source commit hash and build date in commit
GIT_HASH=$(git --git-dir=$SOURCE_DIR/.git rev-parse HEAD)
@ -64,6 +63,13 @@ date: $DATETIME
master commit: $GIT_HASH
"
# should be no submodules or LFS files
git submodule status
if [ ! -z "$(git lfs ls-files)" ]; then
echo "LFS files detected!"
exit 1
fi
# ensure files are within GitHub's limit
BIG_FILES="$(find . -type f -not -path './.git/*' -size +95M)"
if [ ! -z "$BIG_FILES" ]; then

@ -27,6 +27,10 @@ blacklist = [
".devcontainer/",
"Darwin/",
".vscode",
# no LFS
".lfsconfig",
".gitattributes",
]
# gets you through the blacklist

Loading…
Cancel
Save