Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(rust/drivers): adbc driver for datafusion #2267

Open
wants to merge 10 commits into
base: main
Choose a base branch
from
18 changes: 18 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,24 @@ jobs:
run: |
rustup toolchain install stable --no-self-update
rustup default stable
- name: Install Protoc
if: matrix.os == 'ubuntu-latest'
run: |
curl -LO https://github.com/protocolbuffers/protobuf/releases/download/v28.3/protoc-28.3-linux-x86_64.zip
unzip protoc-28.3-linux-x86_64.zip -d $HOME/.local
echo "$HOME/.local/bin" >> "$GITHUB_PATH"
- name: Install Protoc
if: matrix.os == 'macos-13'
run: |
curl -LO https://github.com/protocolbuffers/protobuf/releases/download/v28.3/protoc-28.3-osx-x86_64.zip
unzip protoc-28.3-osx-x86_64.zip -d $HOME/.local
echo "$HOME/.local/bin" >> "$GITHUB_PATH"
- name: Install Protoc
if: matrix.os == 'macos-latest'
run: |
curl -LO https://github.com/protocolbuffers/protobuf/releases/download/v28.3/protoc-28.3-osx-aarch_64.zip
unzip protoc-28.3-osx-aarch_64.zip -d $HOME/.local
echo "$HOME/.local/bin" >> "$GITHUB_PATH"
- uses: actions/download-artifact@v4
with:
name: driver-manager-${{ matrix.os }}
Expand Down
Loading
Loading