Skip to content

Commit

Permalink
cicd: protoc needed
Browse files Browse the repository at this point in the history
  • Loading branch information
l-monninger authored Nov 20, 2023
1 parent 99b4683 commit 0001406
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/actions/setup-linux-x86_64/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,16 @@ runs:
steps:

- name: Install build essentials
run: sudo apt-get update && sudo apt-get install -y build-essential lld libpq-dev
run: |
sudo apt-get update
sudo apt-get install -y build-essential lld libpq-dev
# Install Protocol Buffers Compiler (protoc)
sudo apt-get install -y protobuf-compiler
shell: bash

- name: Set up Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.70

0 comments on commit 0001406

Please sign in to comment.