From 053a25ecd5bb6f282af6075db986ede169081062 Mon Sep 17 00:00:00 2001 From: Schmiddiii Date: Wed, 17 Jan 2024 11:52:56 +0100 Subject: [PATCH] Add protobuf to CI --- .github/workflows/build.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 81c1a6e17..c251102b8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -32,6 +32,11 @@ jobs: with: toolchain: stable + - name: Install protobuf + run: | + sudo apt-get update + sudo apt-get install -y libprotobuf-dev libprotobuf-c-dev protobuf-compiler protobuf-c-compiler + - name: Configure CI cache uses: Swatinem/rust-cache@v2 @@ -87,6 +92,11 @@ jobs: toolchain: stable components: clippy + - name: Install protobuf + run: | + sudo apt-get update + sudo apt-get install -y libprotobuf-dev libprotobuf-c-dev protobuf-compiler protobuf-c-compiler + - name: Setup CI cache uses: Swatinem/rust-cache@v2