Skip to content

Commit

Permalink
1
Browse files Browse the repository at this point in the history
  • Loading branch information
dkropachev committed Jan 26, 2025
1 parent dce60a1 commit a25ed92
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/build-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -169,15 +169,9 @@ jobs:
uses: docker/setup-qemu-action@v3
with:
platforms: all
image: 'docker.io/tonistiigi/binfmt:desktop-v8.1.5'
if: runner.os == 'Linux'

- name: Install dev dependencies
run: |
sudo apt-get install build-essential software-properties-common -y
sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
sudo apt-get update
sudo apt-get install gcc-snapshot -y
- uses: actions/setup-python@v5
name: Install Python
with:
Expand All @@ -190,6 +184,11 @@ jobs:
- name: Build wheels
env:
CIBW_BUILD: "cp39* cp310* cp311* cp312* cp313*" # limit to specific version since it take much more time than jobs limit
CIBW_BEFORE_BUILD: |
sudo apt-get install build-essential software-properties-common -y && \
sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y && \
sudo apt-get update && \
sudo apt-get install gcc-snapshot -y
run: |
python -m cibuildwheel --archs ${{ matrix.archs }} --output-dir wheelhouse
Expand Down

0 comments on commit a25ed92

Please sign in to comment.