-
-
Notifications
You must be signed in to change notification settings - Fork 40
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
setup-homebrew: source homebrew from standard locations #308
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for this. I still think we should probably:
- print a warning letting people know that the Ubuntu 22.04 is a better fit and will be significantly faster using Homebrew there
- audit and fix all our usage of
ubuntu-latest
where we rely onbrew
being in thePATH
and move to Ubuntu 22.04
Co-authored-by: Mike McQuaid <[email protected]>
Will a rebuild fix the GCC style audit failure? |
I don't know, but I know exempting |
Oh, actually, this will be fixed by Homebrew/brew#13916 too. |
I suggest skipping the tap-syntax test on diff --git a/.github/workflows/setup-homebrew.yml b/.github/workflows/setup-homebrew.yml
index a519112..ee64725 100644
--- a/.github/workflows/setup-homebrew.yml
+++ b/.github/workflows/setup-homebrew.yml
@@ -45,3 +45,4 @@ jobs:
- run: brew test-bot --only-setup
- run: brew test-bot --only-tap-syntax
+ if: matrix.os != 'ubuntu-latest'
|
Should fix the problem introduced by actions/runner-images#6283