From ba0b9d650bade85c62d9f99b1eb6025560c4e3dc Mon Sep 17 00:00:00 2001 From: Jonathan Green Date: Fri, 5 Apr 2024 16:44:04 -0300 Subject: [PATCH] Perl is already installed --- .github/workflows/manylinux.yml | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/.github/workflows/manylinux.yml b/.github/workflows/manylinux.yml index 699e823..f620ba4 100644 --- a/.github/workflows/manylinux.yml +++ b/.github/workflows/manylinux.yml @@ -18,19 +18,11 @@ jobs: container: quay.io/pypa/${{ matrix.image }} steps: - uses: actions/checkout@v1 - - name: Install python build dependencies + - name: Install build dependencies run: | # https://github.com/actions/runner/issues/2033 chown -R $(id -u):$(id -g) $PWD /opt/python/${{ matrix.python-abi }}/bin/pip install --upgrade pip setuptools wheel build - - name: Install system build dependencies (manylinux) - run: | - yum install -y perl-core - if: contains(matrix.image, 'manylinux') - - name: Install system build dependencies (musllinux) - run: | - apk add perl - if: contains(matrix.image, 'musllinux') - name: Set environment variables shell: bash run: |