-
Notifications
You must be signed in to change notification settings - Fork 640
GitHub Actions: install [email protected] explicitly for running test cases on MacOS #2803
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
GitHub Actions: install [email protected] explicitly for running test cases on MacOS #2803
Conversation
Codecov Report
@@ Coverage Diff @@
## master #2803 +/- ##
=======================================
Coverage 86.96% 86.96%
=======================================
Files 193 193
Lines 44000 44000
=======================================
Hits 38263 38263
Misses 5737 5737 Continue to review full report at Codecov.
|
531a854
to
f4d1a7e
Compare
…libxml2 fails Signed-off-by: Masatake YAMATO <[email protected]>
f4d1a7e
to
b3661ed
Compare
I don't understand why this is needed. However, failing to setup a test environment on MacOS is so critical for our development. |
# libxml2 requires [email protected]. | ||
# However, the request is not satisfied with just installing libxml2. | ||
brew install libxml2 || brew link --overwrite [email protected] | ||
brew install autoconf automake pkg-config jansson libyaml bash gdb docutils |
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.
GitHub Actions VM macOS10.15
macOS11.0
have pre-installed [email protected]
via HomeBrew
, the error happens when [email protected]
can be upgraded, so we should upgrade [email protected] first.
brew upgrade [email protected] || brew link --overwrite [email protected]
brew install libxml2 jansson libyaml autoconf automake pkg-config bash gdb docutils
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.
Thank you. You know so many things! I will make a pull request reflecting this suggestion.
…teps Quoted from @leleliu008's comment in universal-ctags#2803: GitHub Actions VM macOS10.15 macOS11.0 have pre-installed [email protected] via HomeBrew, the error happens when [email protected] can be upgraded, so we should upgrade [email protected] first. Signed-off-by: Masatake YAMATO <[email protected]>
…teps Quoted from @leleliu008's comment in universal-ctags#2803: GitHub Actions VM macOS10.15 macOS11.0 have pre-installed [email protected] via HomeBrew, the error happens when [email protected] can be upgraded, so we should upgrade [email protected] first. Signed-off-by: Masatake YAMATO <[email protected]>
…teps Quoted from @leleliu008's comment in universal-ctags#2803: GitHub Actions VM macOS10.15 macOS11.0 have pre-installed [email protected] via HomeBrew, the error happens when [email protected] can be upgraded, so we should upgrade [email protected] first.
…teps Quoted from @leleliu008's comment in #2803: GitHub Actions VM macOS10.15 macOS11.0 have pre-installed [email protected] via HomeBrew, the error happens when [email protected] can be upgraded, so we should upgrade [email protected] first.
Signed-off-by: Masatake YAMATO [email protected]