Skip to content

Commit

Permalink
chore(ci): remove check of wheels
Browse files Browse the repository at this point in the history
The cibuildwheel process does a check that the wheels are valid, and
also performs an installation of the wheel and a basic check that the
import is working fine. It seems redundant to be doing a separate check.

This was intended in commit 9604839, but a rebase inadvertently
re-intruced the check.

Ref: 02eab542cc667ac3d19bd6acaf0d7a4a0
Ref: #567
Signed-off-by: JP-Ellis <[email protected]>
  • Loading branch information
JP-Ellis committed Mar 5, 2024
1 parent 6043603 commit 09d339f
Showing 1 changed file with 0 additions and 25 deletions.
25 changes: 0 additions & 25 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -163,31 +163,6 @@ jobs:
if-no-files-found: error
compression-level: 0

check:
name: Check wheels

runs-on: ubuntu-latest

needs:
- build-x86_64
- build-arm64

steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4

- name: Setup Python
uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5
with:
python-version: ${{ env.STABLE_PYTHON_VERSION }}
cache: pip

- uses: actions/download-artifact@c850b930e6ba138125429b7e5c93fc707a7f8427 # v4
with:
path: wheelhouse

- run: |
pipx run twine check --strict wheelhouse/*
publish:
name: Publish wheels and sdist

Expand Down

0 comments on commit 09d339f

Please sign in to comment.