Skip to content

Commit 5402235

Browse files
vsilentCopilot
andcommitted
ci: install protoc in Docker CICD workflow
The docker.yml workflow was missing protobuf-compiler, causing build.rs (tonic_build for proto/pipe.proto) to fail on the self-hosted runner. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 3002891 commit 5402235

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/docker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ jobs:
2727
with:
2828
ref: ${{ github.ref }}
2929

30-
- name: Install OpenSSL build deps
30+
- name: Install OpenSSL and protoc build deps
3131
if: runner.os == 'Linux'
3232
run: |
3333
sudo apt-get update
34-
sudo apt-get install -y pkg-config libssl-dev
34+
sudo apt-get install -y pkg-config libssl-dev protobuf-compiler
3535
3636
- name: Verify .sqlx cache exists
3737
run: |

0 commit comments

Comments
 (0)