Skip to content

Commit

Permalink
Update for new manylinux build
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathangreen committed Apr 5, 2024
1 parent 5ddd101 commit 0ca8ad3
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/manylinux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,19 @@ jobs:
container: quay.io/pypa/${{ matrix.image }}
steps:
- uses: actions/checkout@v1
- name: Install build dependencies
- name: Install python 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: |
Expand Down

0 comments on commit 0ca8ad3

Please sign in to comment.