Skip to content

feat: bump datafusion to 48 #1501

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

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,9 @@ jobs:
- name: Check toml format
run: make check-toml

- name: Install Protoc
uses: arduino/setup-protoc@v3

- name: Cargo format
run: make check-fmt

Expand Down Expand Up @@ -89,6 +92,9 @@ jobs:
- name: Cache Rust artifacts
uses: Swatinem/rust-cache@v2

- name: Install Protoc
uses: arduino/setup-protoc@v3

- name: Build
run: make build

Expand Down Expand Up @@ -150,6 +156,9 @@ jobs:
- uses: actions/checkout@v4
- name: Setup Nightly Rust toolchain
uses: ./.github/actions/setup-builder
- name: Install Protoc
uses: arduino/setup-protoc@v3

- name: Generate minimal versions lockfile
run: |
cargo generate-lockfile -Z direct-minimal-versions -Z minimal-versions
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,10 @@ jobs:
- name: Setup mdBook
uses: peaceiris/actions-mdbook@v2
with:
mdbook-version: '0.4.36'
mdbook-version: "0.4.36"

- name: Install Protoc
uses: arduino/setup-protoc@v3

- name: Build
working-directory: website
Expand Down
Loading
Loading