-
Notifications
You must be signed in to change notification settings - Fork 206
Avoid installing gmp when executing install-macos.sh
#2063
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
install-macos.sh
|
|
Benchmark Results for unmodified programs 🚀
|
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #2063 +/- ##
=======================================
Coverage 95.98% 95.98%
=======================================
Files 104 104
Lines 36794 36794
=======================================
Hits 35315 35315
Misses 1479 1479 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
install-scripts/install-macos.sh
Outdated
| if ! type foobar &> /dev/null; then | ||
| brew install gmp | ||
| fi |
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.
What is type foobar?
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.
Maybe we can do:
brew install --force gmp
Instead of checking if it exists.
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.
Done in: f07d3df
Waiting for this conversation to be resolved
JulianGCalderon
left a comment
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.
LGTM!
Add a check in install-macos.sh to see if gmp is already installed
Description
Description of the pull request changes and motivation.
Checklist