Skip to content

Commit

Permalink
Merge pull request #258 from sobelio/revert-257-drop-protobuf-compiler
Browse files Browse the repository at this point in the history
Revert "ci: drop protobuf, no longer needed by qdrant"
  • Loading branch information
williamhogman authored Jan 10, 2024
2 parents 7885101 + 32a0578 commit a890d41
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/cicd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit a890d41

Please sign in to comment.