forked from pool/lua-resty-mysql
- Updated to 0.28. #1
Reference in New Issue
Block a user
Delete Branch "(deleted):main"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
autogits-devel referenced this pull request from lua/_ObsPrj2025-07-09 15:10:15 +02:00
Did the LFS fail to work again or is the tarball too small?
Please give permissions to edit meta information for lua-resty-{core,lrucache,mysql,redis,websockets}
The LFS files were not uploaded, I think
It's possible you have something broken in the setup. Re-clone the PR, this should let git-lfs to install its hooks into the repository. Then it will say that the file is in lfs in the PR.
You can also try
git lfs installand thengit commit --amend -ato re-do the commit andgit push -fto update this PR with new commit that will kick the build bot to build it. You may have to force push new commit to trigger to the bot anyway.Did you install
git-lfsafter cloning this repository? Or prior?BTW, your other PR suffers from same issue.
I installed git-lfs BEFORE cloning the lua-resty-mysql and lua-resty-redis repositories.
Then forked to the home repository via web-intervice.
cloned my home repository
git clone gitea@src.opensuse.org:13ilya/lua-resty-mysql.git
git add *
git commit -a
git push
Then sent PR from the home repository to lua via web-intervice.
What do I need to change in my workflow?
git lfs install
git commit --amend -a
git push -f
But I don't see any changes in PR.
914602ed7fto9e4df89aecI think I figured out what this is about.
I clone to /tmp which I have for security reasons mounted without executables
tmpfs /tmp tmpfs nodev,nosuid,noexec,size=4G 0 0And webhooks are in the form of executables and they need to be running.
9e4df89aecto08a7dcb25cRemodeling.
That's a good catch regarding
noexecfile system. Yes, the webhooks are executables. In git, they are never installed from remote, but have to be installed locally.git-lfstakes care of that and installs them at time of clone. Without them,git pushwill not result ingit lfs pushand the lfs-hosted files are then missing from the build.Pull request closed