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 Jun 13, 2024
1 parent 00cf51f commit dbf5702
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 275 deletions.
28 changes: 2 additions & 26 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,12 @@
name: Wheel Builds
on:
push:
tags:
- '*'
branches: [ 'dependabot/github_actions/github_actions-0d906df9ae' ]

jobs:
build_wheels:
name: Build wheels
runs-on: ${{ matrix.os }}
environment: release
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -97,7 +96,6 @@ jobs:
upload_shared_wheels:
name: Upload shared build wheels
runs-on: ubuntu-latest
environment: release
permissions:
id-token: write
needs: ["build_wheels", "build_wheels_32bit", "build_wheels_macos_arm_py38"]
Expand All @@ -107,14 +105,9 @@ 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
build_wheels_s390x:
name: Build wheels on s390x
runs-on: ${{ matrix.os }}
environment: release
permissions:
id-token: write
strategy:
Expand All @@ -141,14 +134,9 @@ 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 }}
environment: release
permissions:
id-token: write
strategy:
Expand All @@ -175,14 +163,9 @@ 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 }}
environment: release
permissions:
id-token: write
strategy:
Expand All @@ -208,15 +191,10 @@ 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:
Expand All @@ -233,5 +211,3 @@ jobs:
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
249 changes: 0 additions & 249 deletions azure-pipelines.yml

This file was deleted.

0 comments on commit dbf5702

Please sign in to comment.