From 32a0578e1447d8ad5db7bc6e8652e665f37c3d17 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?William=20H=C3=B6gman=20Rudenmalm?= Date: Wed, 10 Jan 2024 23:28:55 +0100 Subject: [PATCH] Revert "ci: drop protobuf, no longer needed by qdrant" --- .github/workflows/cicd.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/cicd.yaml b/.github/workflows/cicd.yaml index 90eb5bd6..a0207b0d 100644 --- a/.github/workflows/cicd.yaml +++ b/.github/workflows/cicd.yaml @@ -67,6 +67,16 @@ jobs: toolchain: ${{ matrix.rust-version }} override: true + - name: Install Protobuf Compiler (Ubuntu) + if: matrix.os == 'ubuntu-latest' + run: sudo apt-get update && sudo apt-get install -y protobuf-compiler + - name: Install Protobuf Compiler (macOS) + if: matrix.os == 'macos-13' + run: brew install protobuf + - name: Install Protobuf Compiler (Windows) + if: matrix.os == 'windows-latest' + run: choco install protoc --yes + - name: Build (no default-features) uses: actions-rs/cargo@v1 with: