Skip to content

Commit

Permalink
build testing
Browse files Browse the repository at this point in the history
  • Loading branch information
genzgd committed Nov 22, 2024
1 parent ebacbf6 commit e6c914d
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ jobs:
build_x86_manylinux_wheels:
name: Build x86 manylinux wheels on Linux
runs-on: ubuntu-latest
if: false
env:
CIBW_SKIP: 'cp36-* cp37-* pp37-* *-musllinux*'
steps:
Expand All @@ -32,6 +33,7 @@ jobs:
build_x86_musllinux_wheels:
name: Build x86 musllinux wheels on Linux
runs-on: ubuntu-latest
if: false
env:
CIBW_SKIP: 'cp36-* cp37-* pp37-* *-manylinux*'
steps:
Expand All @@ -46,6 +48,7 @@ jobs:
build_aarch64_manylinux_wheels:
name: Build aarch64 manylinux wheels
runs-on: ubuntu-latest
if: false
env:
CIBW_ARCHS_LINUX: aarch64
CIBW_SKIP: 'cp36-* cp37-* pp* *-musllinux*'
Expand All @@ -65,6 +68,7 @@ jobs:
build_aarch64_musllinux_wheels:
name: Build aarch64 musllinux wheels
runs-on: ubuntu-latest
if: false
env:
CIBW_ARCHS_LINUX: aarch64
CIBW_SKIP: 'cp36-* cp37-* pp* *-manylinux*'
Expand All @@ -84,6 +88,7 @@ jobs:
build_aarch64_pypy_wheels:
name: Build aarch64 PyPy wheels
runs-on: ubuntu-latest
if: false
env:
CIBW_ARCHS_LINUX: aarch64
CIBW_BUILD: 'pp*'
Expand All @@ -103,6 +108,7 @@ jobs:
build_macos_wheels:
name: Build wheels on macos
runs-on: macos-14
if: false
steps:
- uses: actions/checkout@v4
- name: Build wheels
Expand All @@ -117,6 +123,7 @@ jobs:
build_windows_wheels:
name: Build wheels on Windows
runs-on: windows-latest
if: false
env:
CIBW_BUILD_VERBOSITY: 2
steps:
Expand All @@ -142,6 +149,14 @@ jobs:
if: ${{ inputs.publish_type != 'build' }}
steps:
- uses: actions/checkout@v4
- name: Set up Python (3.12)
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Install Dependencies
run: !
pip install twine
pip install -U setuptools
- name: Build source distribution
run: |
rm -rf dist
Expand All @@ -156,8 +171,7 @@ jobs:
run: |
cp -R wheelhouse/*.whl dist
ls -R dist
- name: Install Twine
run: pip install twine
- name: Publish (Release)
if: ${{ inputs.publish_type == 'release' }}
env:
Expand Down

0 comments on commit e6c914d

Please sign in to comment.