Skip to content

Commit a890d41

Browse files
Merge pull request #258 from sobelio/revert-257-drop-protobuf-compiler
Revert "ci: drop protobuf, no longer needed by qdrant"
2 parents 7885101 + 32a0578 commit a890d41

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/cicd.yaml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,16 @@ jobs:
6767
toolchain: ${{ matrix.rust-version }}
6868
override: true
6969

70+
- name: Install Protobuf Compiler (Ubuntu)
71+
if: matrix.os == 'ubuntu-latest'
72+
run: sudo apt-get update && sudo apt-get install -y protobuf-compiler
73+
- name: Install Protobuf Compiler (macOS)
74+
if: matrix.os == 'macos-13'
75+
run: brew install protobuf
76+
- name: Install Protobuf Compiler (Windows)
77+
if: matrix.os == 'windows-latest'
78+
run: choco install protoc --yes
79+
7080
- name: Build (no default-features)
7181
uses: actions-rs/cargo@v1
7282
with:

0 commit comments

Comments
 (0)