raulcd commented on PR #47690:
URL: https://github.com/apache/arrow/pull/47690#issuecomment-3438031817
The macOS wheels seem to be failing due to mono being missing:
```
error: Could not fetch mono. You may be able to install this tool via your
system package manager (brew install mono).
note: updating vcpkg by rerunning bootstrap-vcpkg may resolve this failure.
arrow/ci/scripts/install_vcpkg.sh: line 79: Successfully: command not found
```
We could try adding mono here, even though we probably want to fix it on the
`ci/scripts/install_vcpkg.sh` script:
```
diff --git a/dev/tasks/python-wheels/github.osx.yml
b/dev/tasks/python-wheels/github.osx.yml
index ef8e90f412..9493dc1c3d 100644
--- a/dev/tasks/python-wheels/github.osx.yml
+++ b/dev/tasks/python-wheels/github.osx.yml
@@ -51,7 +51,7 @@ jobs:
- name: Install System Dependencies
run: |
- brew install bash bison coreutils ninja
+ brew install bash bison coreutils ninja mono
echo "$(brew --prefix bison)/bin" >> $GITHUB_PATH
- name: Homebrew packages
```
There are also some Python failures which I am unsure if they are related or
they were fixed in the past. Could you rebase and I'll trigger again the
`verify-rc-source-python-macos-*` jobs?
--
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]