Skip to content

Commit 8aca77d

Browse files
committed
build: add protoc for datafusion-substrait
1 parent 1772b41 commit 8aca77d

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,9 @@ jobs:
5656
- name: Check toml format
5757
run: make check-toml
5858

59+
- name: Install Protoc
60+
uses: arduino/setup-protoc@v3
61+
5962
- name: Cargo format
6063
run: make check-fmt
6164

@@ -89,6 +92,9 @@ jobs:
8992
- name: Cache Rust artifacts
9093
uses: Swatinem/rust-cache@v2
9194

95+
- name: Install Protoc
96+
uses: arduino/setup-protoc@v3
97+
9298
- name: Build
9399
run: make build
94100

@@ -150,6 +156,9 @@ jobs:
150156
- uses: actions/checkout@v4
151157
- name: Setup Nightly Rust toolchain
152158
uses: ./.github/actions/setup-builder
159+
- name: Install Protoc
160+
uses: arduino/setup-protoc@v3
161+
153162
- name: Generate minimal versions lockfile
154163
run: |
155164
cargo generate-lockfile -Z direct-minimal-versions -Z minimal-versions

.github/workflows/website.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,10 @@ jobs:
4040
- name: Setup mdBook
4141
uses: peaceiris/actions-mdbook@v2
4242
with:
43-
mdbook-version: '0.4.36'
43+
mdbook-version: "0.4.36"
44+
45+
- name: Install Protoc
46+
uses: arduino/setup-protoc@v3
4447

4548
- name: Build
4649
working-directory: website

0 commit comments

Comments
 (0)