From 55645b0b71823fabaf5e56829139cab60e0ee651 Mon Sep 17 00:00:00 2001 From: Chris Lu Date: Fri, 6 Mar 2026 16:20:06 -0800 Subject: [PATCH] CI: install protobuf-compiler for Rust volume server builds The prost-build crate requires protoc to compile .proto files. --- .github/workflows/rust-volume-server-tests.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/rust-volume-server-tests.yml b/.github/workflows/rust-volume-server-tests.yml index 13f0436cb..721000de7 100644 --- a/.github/workflows/rust-volume-server-tests.yml +++ b/.github/workflows/rust-volume-server-tests.yml @@ -34,6 +34,9 @@ jobs: - name: Checkout code uses: actions/checkout@v6 + - name: Install protobuf compiler + run: sudo apt-get update && sudo apt-get install -y protobuf-compiler + - name: Install Rust toolchain uses: dtolnay/rust-toolchain@stable @@ -68,6 +71,9 @@ jobs: with: go-version: ${{ env.GO_VERSION }} + - name: Install protobuf compiler + run: sudo apt-get update && sudo apt-get install -y protobuf-compiler + - name: Install Rust toolchain uses: dtolnay/rust-toolchain@stable