Skip to content

Commit

Permalink
reset
Browse files Browse the repository at this point in the history
  • Loading branch information
zhixiong-tang committed Oct 3, 2024
1 parent 69bff84 commit e65bbfa
Showing 1 changed file with 13 additions and 7 deletions.
20 changes: 13 additions & 7 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
name: Build SDist
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v3
with:
submodules: true

Expand All @@ -25,7 +25,7 @@ jobs:
- name: Check metadata
run: pipx run twine check dist/*

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v3
with:
path: dist/*.tar.gz

Expand All @@ -34,15 +34,21 @@ jobs:
name: Wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v3
with:
submodules: true

- name: Set up QEMU
if: runner.os == 'Linux'
uses: docker/setup-qemu-action@v2
with:
platforms: all

- uses: pypa/cibuildwheel@v2.17.0
env:
# CIBW_ARCHS: auto64
Expand All @@ -59,7 +65,7 @@ jobs:
shell: bash

- name: Upload wheels
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v3
with:
path: wheelhouse/*.whl

Expand All @@ -73,9 +79,9 @@ jobs:
steps:
- uses: actions/setup-python@v5
with:
python-version: "3.9"
python-version: "3.x"

- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v3
with:
name: artifact
path: dist
Expand Down

0 comments on commit e65bbfa

Please sign in to comment.