From 3afd9ca7ec4e24afb20a39d0657376a943e44d30 Mon Sep 17 00:00:00 2001 From: Michael van Straten Date: Tue, 26 Mar 2024 23:43:25 +0100 Subject: [PATCH] Add protoc install step in CI --- .github/workflows/scheduled.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/scheduled.yml b/.github/workflows/scheduled.yml index 02aa275..718a192 100644 --- a/.github/workflows/scheduled.yml +++ b/.github/workflows/scheduled.yml @@ -24,6 +24,10 @@ jobs: submodules: true - name: Install nightly uses: dtolnay/rust-toolchain@nightly + # Some crates require the protoc compiler to be available at compile time. + # Maybe this should be installed by default on all runners. + - name: Install Protoc + uses: arduino/setup-protoc@v3 - name: cargo generate-lockfile if: hashFiles('Cargo.lock') == '' run: cargo generate-lockfile