Skip to content

Commit

Permalink
Remove protoc installation logic from wheels workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
charlesbluca committed Nov 7, 2023
1 parent 078d279 commit 3a76b29
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,6 @@ jobs:
args: --release --out dist
sccache: 'true'
manylinux: '2_17'
before-script-linux: >
DOWNLOAD_URL=$(curl --retry 6 --retry-delay 10 -s https://api.github.com/repos/protocolbuffers/protobuf/releases/latest | grep -o '"browser_download_url": "[^"]*' | cut -d'"' -f4 | grep "\linux-x86_64.zip$") &&
curl --retry 6 --retry-delay 10 -LO $DOWNLOAD_URL &&
unzip protoc-*-linux-x86_64.zip -d $HOME/.local
docker-options: --env PROTOC=/root/.local/bin/protoc
- name: Build wheels for aarch64
if: matrix.target == 'aarch64'
uses: PyO3/maturin-action@v1
Expand Down Expand Up @@ -73,11 +68,6 @@ jobs:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
version: '3.x'
repo-token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/setup-python@v4
with:
python-version: '3.10'
Expand Down

0 comments on commit 3a76b29

Please sign in to comment.