Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update build-publish-linux.yml to use autdiwheel #60

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build-publish-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Install system packages
run: sudo apt-get update && sudo apt-get install git cmake capnproto zlib1g-dev g++ build-essential python3-dev python3-pip pkg-config libzip-dev software-properties-common libbz2-dev
run: sudo apt-get update && sudo apt-get install git cmake capnproto zlib1g-dev libzip-dev python3-dev python3-pip pkg-config libzip-dev software-properties-common libbz2-dev
- name: Install dependencies
run: python3 -m pip install --upgrade setuptools wheel build
run: python3 -m pip install --upgrade setuptools wheel build auditwheel
- name: Build wheels
run: python3 -m build --wheel --sdist
run: python3 -m build --wheel --sdist && auditwheel repair -w . --plat manylinux_2_34_x86_64 dist/*linux_x86_64.whl && rm -f dist/*linux_x86_64.whl
- name: Store wheels
uses: actions/upload-artifact@v2
with:
Expand Down