From 51d0e83a6a1cf826d201e9581ed91a2084e1813c Mon Sep 17 00:00:00 2001 From: Ben Chambers <35960+bjchambers@users.noreply.github.com> Date: Wed, 16 Aug 2023 12:28:00 -0700 Subject: [PATCH] install protoc --- .github/workflows/ci_python.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci_python.yml b/.github/workflows/ci_python.yml index 895609ea7..32b7923ef 100644 --- a/.github/workflows/ci_python.yml +++ b/.github/workflows/ci_python.yml @@ -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: