Skip to content

Commit

Permalink
Bump protobuf version in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
mortbopet committed Oct 11, 2024
1 parent 7a8e874 commit 318ff22
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion scripts/setup-ubuntu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,16 @@ sudo --preserve-env apt install -y \
clang-tidy \
git \
wget \
protobuf-compiler \
clang-format \
uuid-dev \
default-jre \
libcurl4-openssl-dev

# Install the currently supported version of protobuf:
PB_REL="https://github.com/protocolbuffers/protobuf/releases"
PB_VER="28.2"
curl -LO $PB_REL/download/v$PB_VER/protoc-$PB_VER-linux-x86_64.zip
unzip protoc-$PB_VER-linux-x86_64.zip -d $HOME/.local
export PATH="$PATH:$HOME/.local/bin"

pip install cmake-format

0 comments on commit 318ff22

Please sign in to comment.