eitsupi commented on code in PR #4688:
URL: https://github.com/apache/arrow-adbc/pull/4688#discussion_r3854026875
##########
.github/workflows/rust.yml:
##########
@@ -94,42 +96,86 @@ jobs:
check-latest: true
cache: true
cache-dependency-path: go/adbc/go.sum
- - name: Install Protoc
- if: runner.os == 'Linux'
- run: |
- curl -L
"https://github.com/protocolbuffers/protobuf/releases/download/v28.3/protoc-28.3-linux-$(uname
-m).zip" -o protoc.zip
- unzip protoc.zip -d $HOME/.local
- echo "$HOME/.local/bin" >> "$GITHUB_PATH"
- - name: Install Protoc
- if: runner.os == 'macOS'
- run: |
- curl -L
"https://github.com/protocolbuffers/protobuf/releases/download/v28.3/protoc-28.3-osx-universal_binary.zip"
-o protoc.zip
- unzip "protoc.zip" -d $HOME/.local
- echo "$HOME/.local/bin" >> "$GITHUB_PATH"
- - name: Install Protoc
- if: runner.os == 'Windows'
- run: |
- curl -L
"https://github.com/protocolbuffers/protobuf/releases/download/v28.3/protoc-28.3-win64.zip"
-o protoc.zip
- unzip "protoc.zip" -d $HOME/.local
- echo "$HOME/.local/bin" >> "$GITHUB_PATH"
Review Comment:
Oh, I had forgotten that this is no longer needed.
--
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]