We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 65f7787 commit 00c0937Copy full SHA for 00c0937
.github/workflows/cpp.yml
@@ -230,6 +230,16 @@ jobs:
230
brew uninstall pkg-config || :
231
brew uninstall [email protected] || :
232
brew bundle --file=cpp/Brewfile
233
+ - name: Pin Protobuf to 32.1 for testing (GH-47957)
234
+ if: matrix.architecture == 'ARM64'
235
+ run: |
236
+ echo "Current protobuf version:"
237
+ brew list --versions protobuf
238
+ brew uninstall protobuf
239
+ brew install protobuf@32
240
+ brew link protobuf@32 --force
241
+ echo "Pinned protobuf version:"
242
+ brew list --versions protobuf@32
243
- name: Install MinIO
244
run: |
245
$(brew --prefix bash)/bin/bash \
0 commit comments