Skip to content

Commit

Permalink
DNM: test wheel builds
Browse files Browse the repository at this point in the history
  • Loading branch information
jakelishman committed Feb 12, 2024
1 parent cc09f15 commit c7f5c02
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 431 deletions.
77 changes: 0 additions & 77 deletions .github/workflows/coverage.yml

This file was deleted.

43 changes: 0 additions & 43 deletions .github/workflows/docs_deploy.yml

This file was deleted.

21 changes: 0 additions & 21 deletions .github/workflows/neko.yml

This file was deleted.

44 changes: 3 additions & 41 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
name: Wheel Builds
on:
push:
tags:
- '*'
branches:
- 'dnm-bump-upload-artifact'
jobs:
build_wheels:
name: Build wheels
Expand Down Expand Up @@ -98,10 +98,7 @@ jobs:
pattern: 'wheels-*'
merge-multiple: true
path: deploy
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
packages-dir: deploy
- run: ls -l deploy/
build_wheels_s390x:
name: Build wheels on s390x
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -132,10 +129,6 @@ jobs:
with:
name: wheels-${{ matrix.os }}-s390x
path: ./wheelhouse/*.whl
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
packages-dir: wheelhouse/
build_wheels_ppc64le:
name: Build wheels on ppc64le
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -166,10 +159,6 @@ jobs:
with:
name: wheels-${{ matrix.os }}-ppc64le
path: ./wheelhouse/*.whl
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
packages-dir: wheelhouse/
build_wheels_aarch64:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -199,30 +188,3 @@ jobs:
with:
name: wheels-${{ matrix.os }}-aarch64
path: ./wheelhouse/*.whl
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
packages-dir: wheelhouse/
sdist:
name: Build and publish sdist
runs-on: ${{ matrix.os }}
needs: ["upload_shared_wheels"]
environment: release
permissions:
id-token: write
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
name: Install Python
with:
python-version: '3.10'
- name: Install deps
run: pip install -U build
- name: Build sdist
run: python -m build . --sdist
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
Loading

0 comments on commit c7f5c02

Please sign in to comment.