You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have been trying to build bottles for my homebrew tap. I am using the github actions created by the brew tap-new command. There seems to be an issue with the default workflows that get created using brew tap-new.
When I run, brew tap -h, I see that --full is a valid flag to pass to that command, but when trying to use it brew tap aws/tap --full, I get the error
Calling `brew tap --full` is disabled! There is no replacement.
In doing some research, it appears the brew tap USER/TAP already does a full clone by default, and only does a shallow clone if you pass in the --shallow flag.
This issue is resulting in my pr builds to fail because under the hood brew test-bot calls brew tap USER/TAP --full.
I have been trying to build bottles for my homebrew tap. I am using the github actions created by the
brew tap-new
command. There seems to be an issue with the default workflows that get created usingbrew tap-new
.When I run,
brew tap -h
, I see that--full
is a valid flag to pass to that command, but when trying to use itbrew tap aws/tap --full
, I get the errorIn doing some research, it appears the
brew tap USER/TAP
already does a full clone by default, and only does a shallow clone if you pass in the--shallow
flag.This issue is resulting in my pr builds to fail because under the hood
brew test-bot
callsbrew tap USER/TAP --full
.homebrew-test-bot/lib/test_bot.rb
Line 79 in e86c0e6
I think this issue can be solved just by removing
--full
from the above line, but I don't have enough homebrew knowledge to be sure of that.The text was updated successfully, but these errors were encountered: