-
Notifications
You must be signed in to change notification settings - Fork 22
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
MacOS CI workflows #104
MacOS CI workflows #104
Conversation
Performance test results: |
@@ -18,7 +18,7 @@ AC_DEFUN([REQUIRE_LIB], [ { | |||
AS_IF([test "x$with_$1" == xdefault], | |||
[ | |||
case $host_os in | |||
darwin*) libpathx=($HOMEBREW_CELLAR/$3/*) | |||
darwin*) libpathx=($(brew --cellar)/$3/*) |
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.
HOMEBREW_CELLAR
variable may be not set (for example in GH CI), so getting desired path directly from brew tool looks more reliable.
# REQUIRE_LIB(name,lib,package,testfn,test_include.h) | ||
# REQUIRE_LIB(name,lib,package,testfn,test_header_dir,test_include.h) | ||
# name = The complete name of the library file without the extension. | ||
# lib = The name of the library file without the 'lib' prefix and without the extension. | ||
# package = The name of the package that holds the library | ||
# testfn = One function included in the library that can be used for a test compilation. | ||
# headerdir = directory that contains required header | ||
# header = header file to check for | ||
# headerdir = The directory that contains required header. | ||
# header = The header file to check for |
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.
Missed configure
script update from previous PR
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.
I added one comment because of the repository rename, otherwise looks good!
MacOS workflows for
make
andmeson
builds, including tests.