rok opened a new issue, #49347: URL: https://github.com/apache/arrow/issues/49347
### Describe the bug, including details regarding any error messages, version, and platform. See failed [CI](https://github.com/apache/arrow/actions/runs/22223461273/job/64284215163). aws-sdk-cpp added some pagination logic, [see PRs here](https://github.com/aws/aws-sdk-cpp/pulls?q=is%3Apr+is%3Aclosed). This was released in a broken homebrew release. Fix [was merged](https://github.com/aws/aws-sdk-cpp/pull/3722), but probably won't be released for another week or two. We can wait or temporarily remove the broken `aws-sdk-cpp` from the CI system: ```diff diff --git i/.github/workflows/cpp.yml w/.github/workflows/cpp.yml index 45a9c3ba77..6be13b6177 100644 --- i/.github/workflows/cpp.yml +++ w/.github/workflows/cpp.yml @@ -230,6 +230,10 @@ jobs: brew uninstall pkg-config || : brew uninstall [email protected] || : brew bundle --file=cpp/Brewfile + # Homebrew's aws-sdk-cpp may have broken/incomplete headers + # (e.g. missing pagination headers). Uninstall it so CMake + # builds aws-sdk-cpp from source (BUNDLED) instead. + brew uninstall aws-sdk-cpp - name: Install MinIO run: | $(brew --prefix bash)/bin/bash \ ``` ### Component(s) C++, Continuous Integration -- 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]
