Skip to content

Commit

Permalink
install protoc
Browse files Browse the repository at this point in the history
  • Loading branch information
bjchambers committed Aug 16, 2023
1 parent 79f5a30 commit 51d0e83
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ci_python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,10 @@ jobs:
before-script-linux: |
# We need to add the protobuf-compiler since manylinux builds happen
# in a docker container that doesn't have it.
yum install -y protobuf-compiler
PB_REL="https://github.com/protocolbuffers/protobuf/releases"
curl -LO $PB_REL/download/v24.0/protoc-24.0-linux-${{ matrix.target }}.zip
unzip protoc-24.0-linux-${{ matrix.target }}.zip -d $HOME/.local
export PATH="$PATH:$HOME/.local/bin"
- name: Upload wheels
uses: actions/upload-artifact@v3
with:
Expand Down

0 comments on commit 51d0e83

Please sign in to comment.