getting an error with test-bot using github provided macos runners #6517
-
Output of
|
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
|
pretty sure test-bot is broken with the current state using github actions. just tested github ci using test-bot provided by homebrew with a completely separate tap and am getting the same error, https://github.com/ipatch/homebrew-us-05/actions/runs/19177074264/job/54824481059?pr=57 |
Beta Was this translation helpful? Give feedback.
-
|
Can you try running |
Beta Was this translation helpful? Give feedback.
-
|
i ended up adding the below snippet / step to my tests.yml file to resolve this issue. - name: sanatize homebrew-core tap
run: |
brew update-reset "$(brew --repository homebrew/core)" || true
git -C "$(brew --repository homebrew/core)" clean -fd || true |
Beta Was this translation helpful? Give feedback.
i ended up adding the below snippet / step to my tests.yml file to resolve this issue.