Skip to content

Commit

Permalink
fix: bindings
Browse files Browse the repository at this point in the history
  • Loading branch information
dirvine committed Nov 29, 2024
1 parent 23c2b5c commit dcaf44c
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,11 @@ jobs:
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
- name: Install system dependencies
run: |
sudo apt-get update
sudo apt-get install -y gcc-multilib g++-multilib
- name: Install Python dependencies
run: |
python -m pip install --user cffi
python -m pip install --user patchelf
Expand All @@ -98,7 +102,7 @@ jobs:
CARGO_BUILD_TARGET: "x86_64-unknown-linux-gnu"
RUSTFLAGS: "--cfg pyo3_no_local_impl"
PYO3_CROSS_INCLUDE_DIR: "/opt/python/cp${{ matrix.python-version }}/include"
CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_LINKER: "x86_64-linux-gnu-gcc"
CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_LINKER: "gcc"
CARGO_TARGET_DIR: "target/wheels"
- name: Upload wheels
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit dcaf44c

Please sign in to comment.