-
Notifications
You must be signed in to change notification settings - Fork 125
Feature/update brew version #369
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
Conversation
Looks like bintray is shut down and the older versions of brew look for packages in bintray. Homebrew/discussions#691
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.
Do the Integration tests and CPP packaging workflows need this as well?
@@ -78,6 +78,14 @@ jobs: | |||
path: /tmp/android-ndk-r16b | |||
key: android-ndk-${{ matrix.os }}-r16b | |||
|
|||
- name: Update homebrew (avoid bintray errors) | |||
if: startsWith(matrix.os, 'macos') |
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.
any particular reason this uses startsWith(matrix.os) and the below uses runner.os ==? Can you unify them?
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.
So I was trying to keep it consistent with any other macos checks in those blocks.
For a couple of the blocks, I found the comparison used runner.os and for others, we used macos.
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 pointing it out. Yes, they needed this update too. |
Fix for errors observed while installing packages with homebrew. Until Github runners are updated to use latest hombrew versions, manually updating homebrew in Github workflows.
Homebrew/brew#11070
Homebrew/discussions#691