Skip to content
This repository was archived by the owner on Mar 26, 2026. It is now read-only.

Commit d27b8fa

Browse files
committed
try installing protoc to get fragment tests to pass
1 parent f838eee commit d27b8fa

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/tests.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -348,6 +348,14 @@ jobs:
348348
run: |
349349
sudo apt-get update
350350
sudo apt-get install -y pandoc gcc git
351+
- name: Install protoc.
352+
run: |
353+
sudo mkdir -p /usr/src/protoc/
354+
sudo chown -R ${USER} /usr/src/
355+
curl --location https://github.com/google/protobuf/releases/download/v${PROTOC_VERSION}/protoc-${PROTOC_VERSION}-linux-x86_64.zip --output /usr/src/protoc/protoc-${PROTOC_VERSION}.zip
356+
cd /usr/src/protoc/
357+
unzip protoc-${PROTOC_VERSION}.zip
358+
sudo ln -s /usr/src/protoc/bin/protoc /usr/local/bin/protoc
351359
- name: Install nox.
352360
run: |
353361
python -m pip install nox

0 commit comments

Comments
 (0)