pitrou commented on code in PR #36522:
URL: https://github.com/apache/arrow/pull/36522#discussion_r1258375262
##########
dev/tasks/r/github.macos.autobrew.yml:
##########
@@ -35,14 +35,20 @@ jobs:
- "{{ macros.r_oldrel.ver }}"
steps:
{{ macros.github_checkout_arrow()|indent }}
+ - name: Setup hosted
+ if: matrix.platform != 'macos-10.13'
+ run: |
+ # minio and sccache are pre-installed on the self-hosted 10.13
runner.
+ # Install minio for tests.
+ brew install minio
+ brew install sccache
+
+ # Ensure removing OpenSSL from the default paths to avoid
+ # mixing OpenSSL in the default paths and OpenSSL installed
+ # by autobrew.
+ brew unlink openssl || :
Review Comment:
Hmm... can we instead make sure our build chain selects OpenSSL
consistently? Users will otherwise probably encounter a similar problem if they
try compiling Arrow themselves.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]