From 3a76b29dcd84dbd20dcb3696713647771a80aabe Mon Sep 17 00:00:00 2001 From: Charles Blackmon-Luca <20627856+charlesbluca@users.noreply.github.com> Date: Tue, 7 Nov 2023 10:35:57 -0500 Subject: [PATCH] Remove protoc installation logic from wheels workflow --- .github/workflows/release.yml | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b2f5be14c..849b3d428 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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 @@ -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'